-
-
Notifications
You must be signed in to change notification settings - Fork 476
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle operation parsing error GraphQL (#2434)
- Loading branch information
1 parent
3d0b473
commit b584a88
Showing
17 changed files
with
5,730 additions
and
39 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
35 changes: 35 additions & 0 deletions
35
crates/biome_graphql_parser/tests/graphql_test_suite/err/directive.graphql
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,35 @@ | ||
{ | ||
hero @ | ||
} | ||
|
||
{ | ||
hero @ @ | ||
} | ||
|
||
{ | ||
hero @deprecated(: "Deprecated") | ||
} | ||
|
||
{ | ||
hero @deprecated(reason:) | ||
} | ||
|
||
{ | ||
hero @deprecated(reason: "Deprecated" | ||
} | ||
|
||
{ | ||
hero @(reason: "Deprecated" | ||
} | ||
|
||
{ | ||
hero @(: "Deprecated" | ||
} | ||
|
||
{ | ||
hero @(: | ||
} | ||
|
||
{ | ||
hero @(:) | ||
} |
Oops, something went wrong.