-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add missing directive definitions #3656
Conversation
|
||
public static final String BOOLEAN = "Boolean"; | ||
public static final String STRING = "String"; | ||
public static final String NO_LONGER_SUPPORTED = "No longer supported"; |
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.
In more recent code, as a general rule we prefer to not have random strings hanging about. Some parts of this class haven't been changed in a long while and still have strings. If you prefer I can give the public static final String
treatment to all the strings in this class
.name("if") | ||
.description(createDescription("Included when true.")) | ||
.type(newNonNullType(newTypeName().name(BOOLEAN).build()).build()) | ||
.build()) |
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.
A comment for myself: in AST land, DirectiveDefinition
s ONLY have "inputValueDefinition", this is the AST type used to model "arguments". Confusingly there is another graphql.language
/AST class called "Argument". It is meant to be inputValueDefinition
here.
Do we need to declare the defer one as experimental? |
public static final DirectiveDefinition SPECIFIED_BY_DIRECTIVE_DEFINITION; | ||
@ExperimentalApi | ||
public static final DirectiveDefinition ONE_OF_DIRECTIVE_DEFINITION; | ||
@ExperimentalApi | ||
public static final DirectiveDefinition DEFER_DIRECTIVE_DEFINITION; |
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.
Do we need to declare the defer one as experimental?
@andimarek it is declared here, did you also want the annotation to appear elsewhere?
Elsewhere all the defer codepaths have been annotated with @ExperimentalApi
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.
perfect, didn't see that
Adds DirectiveDefinitions that were missing on built-in directives
@skip
,@include
, and@defer
We didn't previously have any tests for DirectiveDefinitions and I can see why, it's a definition rather than logic. But if you want tests I can add them.