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 "BUDGETS PARTICIPATIFS 2021 - Déposez vos projets" step, finds the first 10 proposals, and returns each proposal's title, body, author username and responses with question title:

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