-
Notifications
You must be signed in to change notification settings - Fork 362
Explicit support for deprecated directive in the schema #247
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
Conversation
src/main/kotlin/com/expedia/graphql/extensions/GraphQLSchema.kt
Outdated
Show resolved
Hide resolved
Codecov Report
@@ Coverage Diff @@
## master #247 +/- ##
============================================
- Coverage 96.87% 94.33% -2.55%
- Complexity 193 198 +5
============================================
Files 59 61 +2
Lines 641 688 +47
Branches 116 120 +4
============================================
+ Hits 621 649 +28
- Misses 9 28 +19
Partials 11 11
Continue to review full report at Codecov.
|
.includeExtendedScalarTypes(includeExtendedScalarTypes) | ||
.includeIntrospectionTypes(includeIntrospectionTypes) | ||
.includeSchemaDefintion(includeSchemaDefinition) | ||
.includeDirectives(false) |
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.
ugh.... this flag removes both directive definitions as well as their target locations :(
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.
Added an issue here: graphql-java/graphql-java#1587
…#247) * Explicit support for deprecated directive in the schema * custom SDL printer * customize schema print extension, fix unit tests and detekt * add printer tests * revert changes to GraphQLName
…#247) * Explicit support for deprecated directive in the schema * custom SDL printer * customize schema print extension, fix unit tests and detekt * add printer tests * revert changes to GraphQLName
Resolves #246