Skip to content
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

Merged
merged 1 commit into from
Jul 30, 2024
Merged

Conversation

dondonz
Copy link
Member

@dondonz dondonz commented Jul 4, 2024

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.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

public static final String BOOLEAN = "Boolean";
public static final String STRING = "String";
public static final String NO_LONGER_SUPPORTED = "No longer supported";
Copy link
Member Author

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())
Copy link
Member Author

@dondonz dondonz Jul 4, 2024

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, DirectiveDefinitions 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.

@andimarek
Copy link
Member

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;
Copy link
Member Author

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

Copy link
Member

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

@dondonz dondonz added this pull request to the merge queue Jul 30, 2024
Merged via the queue into master with commit 2ae1479 Jul 30, 2024
1 check passed
@dondonz dondonz deleted the built-in-directive-definitions branch July 30, 2024 05:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants