Skip to content

Commit

Permalink
bump fe1 branch query limit and disregard broken pagination logic (#1875
Browse files Browse the repository at this point in the history
)
  • Loading branch information
gjedlicska authored Nov 17, 2023
1 parent a96c596 commit e32f666
Show file tree
Hide file tree
Showing 4 changed files with 164 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/codegen.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
overwrite: true
schema:
- 'http://localhost:3000/graphql'
- 'http://127.0.0.1:3000/graphql'
- 'src/graphql/local-only/schema.gql'
documents:
- 'src/graphql/**/*.gql'
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/graphql/branch.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const streamNavBranchesQuery = gql`
query StreamAllBranches($streamId: String!, $cursor: String) {
stream(id: $streamId) {
id
branches(limit: 100, cursor: $cursor) {
branches(limit: 500, cursor: $cursor) {
totalCount
cursor
items {
Expand Down
Loading

0 comments on commit e32f666

Please sign in to comment.