Decidim 0.27.9
A type used for filtering plans inside a participatory space.
A typical query would look like:
{
participatoryProcesses {
components {
...on Plans {
plans(filter:{ publishedBefore: "2020-01-01", state: ["accepted", "evaluating"] }) {
id
}
}
}
}
}
String)
List result published before (and excluding) this date. Expected format YYYY-MM-DD
String)
List result published after (and including) this date. Expected format YYYY-MM-DD
[String!])
Filters the plans of the specified types. Allowed values are "open", "accepted", "evaluating", "rejected" and "withdrawn". By default, the withdrawn plans will not be included.
Queries