Skip to content

Commit

Permalink
schemaFix
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelbrui committed Apr 23, 2024
1 parent 2917e31 commit a22a277
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/integrations/gei-bookings/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ input GetSelfServicesFiltersInput{
}

type GetSelfServicesRespond{
service: [Service!]
services: [Service!]
error: GlobalError
hasNextPage: Boolean
}
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/gei-bookings/src/zeus/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export const ReturnTypes: Record<string,any> = {
hasNextPage:"Boolean"
},
GetSelfServicesRespond:{
service:"Service",
services:"Service",
error:"GlobalError",
hasNextPage:"Boolean"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/integrations/gei-bookings/src/zeus/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ respondOnServiceRequest?: [{ input: ValueTypes["RespondOnServiceRequestInput"] |
toDate?: ValueTypes["Date"] | undefined | null | Variable<any, string>
};
["GetSelfServicesRespond"]: AliasType<{
service?:ValueTypes["Service"],
services?:ValueTypes["Service"],
error?:ValueTypes["GlobalError"],
hasNextPage?:boolean | `@${string}`,
__typename?: boolean | `@${string}`
Expand Down Expand Up @@ -1227,7 +1227,7 @@ respondOnServiceRequest?: [{ input: ResolverInputTypes["RespondOnServiceRequestI
toDate?: ResolverInputTypes["Date"] | undefined | null
};
["GetSelfServicesRespond"]: AliasType<{
service?:ResolverInputTypes["Service"],
services?:ResolverInputTypes["Service"],
error?:ResolverInputTypes["GlobalError"],
hasNextPage?:boolean | `@${string}`,
__typename?: boolean | `@${string}`
Expand Down Expand Up @@ -1524,7 +1524,7 @@ in otherwise any endpoint in UserMutation will throw error about malformed sourc
toDate?: ModelTypes["Date"] | undefined
};
["GetSelfServicesRespond"]: {
service?: Array<ModelTypes["Service"]> | undefined,
services?: Array<ModelTypes["Service"]> | undefined,
error?: ModelTypes["GlobalError"] | undefined,
hasNextPage?: boolean | undefined
};
Expand Down Expand Up @@ -1805,7 +1805,7 @@ in otherwise any endpoint in UserMutation will throw error about malformed sourc
};
["GetSelfServicesRespond"]: {
__typename: "GetSelfServicesRespond",
service?: Array<GraphQLTypes["Service"]> | undefined,
services?: Array<GraphQLTypes["Service"]> | undefined,
error?: GraphQLTypes["GlobalError"] | undefined,
hasNextPage?: boolean | undefined
};
Expand Down

0 comments on commit a22a277

Please sign in to comment.