query {

assemblies {
  id
  slug
  components (filter: {withGeolocationEnabled: true }) {
    id
    __typename
    ...geolocatedMeetings
    ...geolocatedProposals
  }
}
participatoryProcesses {
  id
  slug
  components (filter: {withGeolocationEnabled: true }) {
    id
    __typename
    ...geolocatedMeetings
    ...geolocatedProposals
  }
}

}

fragment geolocatedMeetings on Meetings {

meetings {
  edges {
    node {
      id
      address
      title {
        translations {
          text
        }
      }
      description {
        translations {
          text
        }
      }
      startTime
      endTime
      location {
        translations {
          text
        }
      }
      locationHints {
        translations {
          text
        }
      }
      coordinates {
        latitude
        longitude
      }
    }
  }
}

}

fragment geolocatedProposals on Proposals {

proposals {
  edges {
    node {
      id
      address
      title
      body
      coordinates {
        latitude
        longitude
      }
    }
  }
}

}