Skip to content

Commit

Permalink
change lookback to 28 days not 14
Browse files Browse the repository at this point in the history
  • Loading branch information
snario authored Oct 7, 2024
1 parent 930b59d commit ad60bc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ query GetProjects($endCursor: String) {
name: { nin: ["Canceled", "Completed", "Backlog"] }
}
}
{ completedAt: { gte: "-P14D" } }
{ canceledAt: { gte: "-P14D" } }
{ completedAt: { gte: "-P28D" } }
{ canceledAt: { gte: "-P28D" } }
]
}
first: 50
Expand Down

0 comments on commit ad60bc9

Please sign in to comment.