Skip to content

Commit

Permalink
Merge pull request #2 from ethglobal/snario/initiative-filter
Browse files Browse the repository at this point in the history
Add filter for GetInitiatives
  • Loading branch information
jacobwillemsma authored Jan 7, 2025
2 parents ad60bc9 + 77e1af5 commit 2d6096f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ fragment ProjectFields on Project {
}

query GetInitiatives {
initiatives {
initiatives(
filter: {
status: { in: ["Active", "Completed"] }
}
) {
nodes {
...InitiativeFields
}
Expand Down

0 comments on commit 2d6096f

Please sign in to comment.