We have added a filter in the committees query to get the records based on the parent. This will help to get the countries (MCs) under a specific region or cities/universities (LCs) under the country.
Sample query:
query Committee {
committees(filters: { parent: 1630 }) {
data {
id
name
}
}
}