-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(compiler): non-nullable variables should be accepted for nullable…
… args (#565) * fix(compiler): non-nullable variables should be accepted for nullable arguments
- Loading branch information
Showing
5 changed files
with
207 additions
and
43 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
14 changes: 14 additions & 0 deletions
14
crates/apollo-compiler/test_data/ok/0033_valid_variable_usage.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,14 @@ | ||
query nullableStringArg($nonNullableVar: String!) { | ||
arguments { | ||
nullableString(nullableString: $nonNullableVar) | ||
} | ||
} | ||
|
||
type Query { | ||
arguments: Arguments | ||
} | ||
|
||
type Arguments { | ||
nullableString(nullableString: String): String | ||
} | ||
|
105 changes: 105 additions & 0 deletions
105
crates/apollo-compiler/test_data/ok/0033_valid_variable_usage.txt
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