Skip to content

Commit

Permalink
Increase the limit on route_stops queries (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
irees authored Jun 17, 2024
1 parent 80d0034 commit c0d0790
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/runtime/components/feed-version-map-viewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ query ($limit: Int=100, $agency_ids: [Int!], $after:Int!=0, $route_ids: [Int!],
direction_id
headway_secs
}
route_stops @include(if: $include_stops) {
route_stops(limit: 1000) @include(if: $include_stops) {
stop {
id
stop_id
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/pages/route.vue
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ query ($onestopId: String, $ids: [Int!], $entityId: String, $feedOnestopId: Stri
text
}
}
route_stops @include(if: $include_stops) {
route_stops(limit: 1000) @include(if: $include_stops) {
stop {
id
stop_id
Expand Down

0 comments on commit c0d0790

Please sign in to comment.