Cap Collectif Developers - GraphQL API

Look up proposals

Looking up steps with proposals is not yet available on our public API.

But don't worry, we wrote this interactive guide to give you all the information that you need !

Interactive section

The following query looks up the "Plan de Prévention du Bruit dans l'Environnement 2024 : EXPRIMEZ-VOUS ! - La parole est à vous" step, finds the first 10 proposals, and returns each proposal's title, body, author username and responses with question title:

{
  node(id: "Q29sbGVjdFN0ZXA6MDg3M2UxMzctNWExNS0xMWVmLWFkNWItMDI0MmFjMTEwMDA2") {
    ... on CollectStep {
      proposals(first: 10, after: null) {
        totalCount
        edges {
          node {
            title
            body
            author {
              username
            }
            responses {
              question {
                title
              }
              ... on ValueResponse {
                value
              }
            }
          }
        }
      }
    }
  }
}