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 "Organisation de l'Etat et des services publics - Partagez vos propositions" step, finds the first 10 proposals, and returns each proposal's title, body, author username and responses with question title:
{
node(id: "Q29sbGVjdFN0ZXA6MjNmY2UwNjMtMWNlMS0xMWU5LTk0ZDItZmExNjNlZWIxMWUx") {
... on CollectStep {
proposals(first: 10, after: null) {
totalCount
edges {
node {
title
body
author {
username
}
responses {
question {
title
}
... on ValueResponse {
value
}
}
}
}
}
}
}
}