Decidim 0.28.0

Metadecidim API documentation

Explore the API interactively with GraphiQL

ProposalFilter

A type used for filtering proposals inside a participatory space.

A typical query would look like:

  {
  participatoryProcesses {
    components {
      ...on Proposals {
        proposals(filter:{ publishedBefore: "2020-01-01" }) {
          id
        }
      }
    }
  }
  }

Input Fields

publishedBefore (String)

List result published before (and excluding) this date. Expected format YYYY-MM-DD

publishedSince (String)

List result published after (and including) this date. Expected format YYYY-MM-DD