-
Notifications
You must be signed in to change notification settings - Fork 46
feat(compiler): allow SDL to contain built-in type redefinition #994
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
Merged
Merged
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f8a69b3
feat(compiler): allow SDL to contain built-in type redefinition
dariuszkuc c8efa94
add changelog
dariuszkuc c1a0e84
update changelog
dariuszkuc 19cf1f5
expand built_in_redefinition tests
lrlna 88c2f05
fix doc comment for ignore_builtin_redefinitions
lrlna 0cb5cc9
change expect_err message
lrlna File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -2020,7 +2020,7 @@ mod variable_default_values { | |
} | ||
|
||
#[test] | ||
fn handles_built_in_type_redefinition() { | ||
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. This |
||
fn handles_built_in_scalar_redefinition() { | ||
let schema = r#" | ||
scalar String | ||
|
||
|
@@ -2049,3 +2049,48 @@ type Query { | |
.build() | ||
.expect("schema parsed successfully"); | ||
} | ||
|
||
#[test] | ||
fn handles_built_in_type_redefinition() { | ||
let schema = r#" | ||
type __Directive { | ||
name: String! | ||
description: String! | ||
isRepeatable: String! | ||
args: __InputValue | ||
locations: String! | ||
} | ||
|
||
type Query { | ||
foo: String | ||
} | ||
"#; | ||
|
||
let errors = Schema::parse_and_validate(schema, "schema.graphql") | ||
.expect_err("invalid schema") | ||
.errors; | ||
let expected = expect![[r#" | ||
Error: the type `__Directive` is defined multiple times in the schema | ||
╭─[ built_in.graphql:87:6 ] | ||
│ | ||
87 │ type __Directive { | ||
│ ─────┬───── | ||
│ ╰─────── previous definition of `__Directive` here | ||
│ | ||
├─[ schema.graphql:2:6 ] | ||
│ | ||
2 │ type __Directive { | ||
│ ─────┬───── | ||
│ ╰─────── `__Directive` redefined here | ||
│ | ||
│ Help: remove or rename one of the definitions, or use `extend` | ||
────╯ | ||
"#]]; | ||
expected.assert_eq(&errors.to_string()); | ||
|
||
let builder = SchemaBuilder::new().ignore_builtin_redefinitions(); | ||
let _ = builder | ||
.parse(schema, "schema.graphql") | ||
.build() | ||
.expect("schema parsed successfully"); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.