Sha256: b2fde05aabaed6e04dfd21290ca6c8692ca45761e062090fe7064f874abf72da

Contents?: true

Size: 1.29 KB

Versions: 2

Compression:

Stored size: 1.29 KB

Contents

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 {
          translations {
            text
          }
        }
        body {
          translations {
            text
          }
        }
        coordinates {
          latitude
          longitude
        }
      }
    }
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
decidim-comparative_stats-1.1.0 lib/decidim/comparative_stats/queries/global_events.graphql
decidim-comparative_stats-1.0.1 lib/decidim/comparative_stats/queries/global_events.graphql