-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1510 from jmartisk/main-issue-1485
add parser options and upgrade to graphql-java 19
- Loading branch information
Showing
19 changed files
with
396 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
server/tck/src/test/resources/overrides/createNewNullNamedHero/output2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"errors": [ | ||
{ | ||
"message": "Validation error (WrongType@[createNewHero]) : argument 'hero.name' with value 'NullValue{}' must not be null", | ||
"locations": [ | ||
{ | ||
"line": 2, | ||
"column": 19 | ||
} | ||
] | ||
} | ||
], | ||
"data": null | ||
} |
14 changes: 14 additions & 0 deletions
14
server/tck/src/test/resources/overrides/createNewUnnamedHero/output2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"errors": [ | ||
{ | ||
"message": "Validation error (WrongType@[createNewHero]) : argument 'hero' with value 'ObjectValue{objectFields=[ObjectField{name='realName', value=StringValue{value='John Smith'}}]}' is missing required fields '[name]'", | ||
"locations": [ | ||
{ | ||
"line": 2, | ||
"column": 19 | ||
} | ||
] | ||
} | ||
], | ||
"data": null | ||
} |
16 changes: 16 additions & 0 deletions
16
server/tck/src/test/resources/overrides/invalidDataTypeValue/output3.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"errors": [ | ||
{ | ||
"message": "argument 'powerLevel' with value 'StringValue{value='Unlimited'}' is not a valid 'Int'", | ||
"locations": [ | ||
{ | ||
"line": 2, | ||
"column": 37 | ||
} | ||
] | ||
} | ||
], | ||
"data": { | ||
"updateItemPowerLevel": null | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
server/tck/src/test/resources/overrides/invalidEnumValue/output2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"errors": [ | ||
{ | ||
"message": "Validation error (WrongType@[createNewHero]) : argument 'hero.tshirtSize' with value 'EnumValue{name='XLTall'}' is not a valid 'ShirtSize' - Expected enum literal value not in allowable values - 'EnumValue{name='XLTall'}'.", | ||
"locations": [ | ||
{ | ||
"line": 3, | ||
"column": 19 | ||
} | ||
] | ||
} | ||
], | ||
"data": null | ||
} |
16 changes: 16 additions & 0 deletions
16
server/tck/src/test/resources/overrides/invalidLocalDateFormattedValue/output3.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"errors": [ | ||
{ | ||
"message": "argument 'date' with value 'StringValue{value='Today'}' is not a valid 'Date'", | ||
"locations": [ | ||
{ | ||
"line": 2, | ||
"column": 49 | ||
} | ||
] | ||
} | ||
], | ||
"data": { | ||
"checkInWithCorrectDateFormat": null | ||
} | ||
} |
Oops, something went wrong.