Skip to content

Commit

Permalink
updated pathwayActivities to be 500 activities, which is max
Browse files Browse the repository at this point in the history
  • Loading branch information
bejoinka committed Aug 2, 2024
1 parent 17eed63 commit 920e6d9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "action-validate",
"description": "GitHub action for careflow validation",
"version": "1.1.0-beta",
"version": "1.1.1-beta",
"author": "",
"private": true,
"homepage": "https://github.com/awell-health/action-validate",
Expand Down
2 changes: 1 addition & 1 deletion src/gql/orchestration-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2635,7 +2635,7 @@ export const FormDocument = gql`
`;
export const PathwayActivitiesDocument = gql`
query PathwayActivities($pathway_id: String!) {
pathwayActivities(pathway_id: $pathway_id, pagination: {count: 1000, offset: 0}) {
pathwayActivities(pathway_id: $pathway_id, pagination: {count: 500, offset: 0}) {
code
success
activities {
Expand Down
2 changes: 1 addition & 1 deletion src/gql/orchestration/pathwayActivities.graphql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
query PathwayActivities($pathway_id: String!) {
pathwayActivities(
pathway_id: $pathway_id
pagination: { count: 1000, offset: 0 }
pagination: { count: 500, offset: 0 }
) {
code
success
Expand Down

0 comments on commit 920e6d9

Please sign in to comment.