-
Notifications
You must be signed in to change notification settings - Fork 63
chore: upgrade to graphql 15 #524
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -444,3 +444,5 @@ function wrapInBooleanConditionsIfNeeded( | |
|
||
return selection; | ||
} | ||
|
||
export type Maybe<T> = null | undefined | T; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,8 @@ exports[`JSON output should generate JSON output for a mutation with an enum and | |
\\"responseName\\": \\"__typename\\", | ||
\\"fieldName\\": \\"__typename\\", | ||
\\"type\\": \\"String!\\", | ||
\\"isConditional\\": false | ||
\\"isConditional\\": false, | ||
\\"isDeprecated\\": false | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why is this extra field being added in the tests? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I don't see this causing any issue though. |
||
}, | ||
{ | ||
\\"responseName\\": \\"stars\\", | ||
|
@@ -194,7 +195,8 @@ exports[`JSON output should generate JSON output for a query with a fragment spr | |
\\"responseName\\": \\"__typename\\", | ||
\\"fieldName\\": \\"__typename\\", | ||
\\"type\\": \\"String!\\", | ||
\\"isConditional\\": false | ||
\\"isConditional\\": false, | ||
\\"isDeprecated\\": false | ||
}, | ||
{ | ||
\\"responseName\\": \\"id\\", | ||
|
@@ -235,7 +237,8 @@ exports[`JSON output should generate JSON output for a query with a fragment spr | |
\\"responseName\\": \\"__typename\\", | ||
\\"fieldName\\": \\"__typename\\", | ||
\\"type\\": \\"String!\\", | ||
\\"isConditional\\": false | ||
\\"isConditional\\": false, | ||
\\"isDeprecated\\": false | ||
}, | ||
{ | ||
\\"responseName\\": \\"name\\", | ||
|
@@ -258,7 +261,8 @@ exports[`JSON output should generate JSON output for a query with a fragment spr | |
\\"responseName\\": \\"__typename\\", | ||
\\"fieldName\\": \\"__typename\\", | ||
\\"type\\": \\"String!\\", | ||
\\"isConditional\\": false | ||
\\"isConditional\\": false, | ||
\\"isDeprecated\\": false | ||
}, | ||
{ | ||
\\"responseName\\": \\"name\\", | ||
|
@@ -289,7 +293,8 @@ exports[`JSON output should generate JSON output for a query with a fragment spr | |
\\"responseName\\": \\"__typename\\", | ||
\\"fieldName\\": \\"__typename\\", | ||
\\"type\\": \\"String!\\", | ||
\\"isConditional\\": false | ||
\\"isConditional\\": false, | ||
\\"isDeprecated\\": false | ||
}, | ||
{ | ||
\\"responseName\\": \\"name\\", | ||
|
@@ -595,7 +600,8 @@ exports[`JSON output should generate JSON output for a query with a nested selec | |
\\"responseName\\": \\"__typename\\", | ||
\\"fieldName\\": \\"__typename\\", | ||
\\"type\\": \\"String!\\", | ||
\\"isConditional\\": false | ||
\\"isConditional\\": false, | ||
\\"isDeprecated\\": false | ||
}, | ||
{ | ||
\\"responseName\\": \\"name\\", | ||
|
@@ -617,7 +623,8 @@ exports[`JSON output should generate JSON output for a query with a nested selec | |
\\"responseName\\": \\"__typename\\", | ||
\\"fieldName\\": \\"__typename\\", | ||
\\"type\\": \\"String!\\", | ||
\\"isConditional\\": false | ||
\\"isConditional\\": false, | ||
\\"isDeprecated\\": false | ||
}, | ||
{ | ||
\\"responseName\\": \\"name\\", | ||
|
@@ -941,7 +948,8 @@ exports[`JSON output should generate JSON output for a query with an enum variab | |
\\"responseName\\": \\"__typename\\", | ||
\\"fieldName\\": \\"__typename\\", | ||
\\"type\\": \\"String!\\", | ||
\\"isConditional\\": false | ||
\\"isConditional\\": false, | ||
\\"isDeprecated\\": false | ||
}, | ||
{ | ||
\\"responseName\\": \\"name\\", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this package used for? Looks like it is newly added.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test would fail with the following without including this.
I think GraphQL 14 may have included this dependency before.