Skip to content

Commit

Permalink
fix: change reports limit in GraphQL query (#774)
Browse files Browse the repository at this point in the history
* fix: change reports limit to 50 in qraphql query

* fix: ci

* fix: ci

* fix: ci (set yarn to 3.6.1)

* chore: codegen

---------

Co-authored-by: Michał Korczak <[email protected]>
  • Loading branch information
jakubwiczkowski and Omikorin authored Nov 21, 2023
1 parent 133963b commit 16f6234
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: 20

- name: Setup yarn
run: yarn set version 3.6.1
run: corepack prepare yarn@3.6.1 --activate

- name: Install deps
uses: ./.github/actions/yarn-install
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/api/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1930,7 +1930,7 @@ export const MeetingDocument = gql`
}
}
}
reports {
reports(pagination: { limit: 50 }) {
data {
id
attributes {
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/api/queries/meeting.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ query Meeting($id: ID!) {
}
}
}
reports {
reports(pagination: { limit: 50 }) {
data {
id
attributes {
Expand Down

0 comments on commit 16f6234

Please sign in to comment.