-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
961fd33
commit ce01b73
Showing
4 changed files
with
126 additions
and
0 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
117 changes: 117 additions & 0 deletions
117
graphql-java-support/src/main/resources/definitions_fed2_8.graphqls
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,117 @@ | ||
# | ||
# https://specs.apollo.dev/federation/v2.0/federation-v2.0.graphql | ||
# | ||
|
||
directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE | ||
directive @requires(fields: FieldSet!) on FIELD_DEFINITION | ||
directive @provides(fields: FieldSet!) on FIELD_DEFINITION | ||
directive @external on OBJECT | FIELD_DEFINITION | ||
directive @extends on OBJECT | INTERFACE | ||
directive @inaccessible on | ||
| FIELD_DEFINITION | ||
| OBJECT | ||
| INTERFACE | ||
| UNION | ||
| ENUM | ||
| ENUM_VALUE | ||
| SCALAR | ||
| INPUT_OBJECT | ||
| INPUT_FIELD_DEFINITION | ||
| ARGUMENT_DEFINITION | ||
directive @tag(name: String!) repeatable on | ||
| FIELD_DEFINITION | ||
| INTERFACE | ||
| OBJECT | ||
| UNION | ||
| ARGUMENT_DEFINITION | ||
| SCALAR | ||
| ENUM | ||
| ENUM_VALUE | ||
| INPUT_OBJECT | ||
| INPUT_FIELD_DEFINITION | ||
scalar FieldSet | ||
|
||
# | ||
# https://specs.apollo.dev/link/v1.0/link-v1.0.graphql | ||
# | ||
|
||
directive @link( | ||
url: String!, | ||
as: String, | ||
import: [Import], | ||
for: Purpose) | ||
repeatable on SCHEMA | ||
|
||
scalar Import | ||
|
||
enum Purpose { | ||
SECURITY | ||
EXECUTION | ||
} | ||
|
||
# | ||
# federation-v2.1 | ||
# | ||
|
||
directive @composeDirective(name: String!) repeatable on SCHEMA | ||
|
||
# | ||
# federation-v2.2 | ||
# | ||
|
||
directive @shareable repeatable on FIELD_DEFINITION | OBJECT | ||
|
||
# | ||
# federation-v2.3 | ||
# | ||
|
||
directive @interfaceObject on OBJECT | ||
|
||
# | ||
# federation-v2.5 | ||
# | ||
|
||
directive @authenticated on | ||
ENUM | ||
| FIELD_DEFINITION | ||
| INTERFACE | ||
| OBJECT | ||
| SCALAR | ||
|
||
directive @requiresScopes(scopes: [[Scope!]!]!) on | ||
ENUM | ||
| FIELD_DEFINITION | ||
| INTERFACE | ||
| OBJECT | ||
| SCALAR | ||
|
||
scalar Scope | ||
|
||
# | ||
# federation-v2.6 | ||
# | ||
|
||
directive @policy(policies: [[Policy!]!]!) on | ||
ENUM | ||
| FIELD_DEFINITION | ||
| INTERFACE | ||
| OBJECT | ||
| SCALAR | ||
|
||
scalar Policy | ||
|
||
# | ||
# federation-v2.7 | ||
# | ||
|
||
directive @override(from: String!, label: String) on FIELD_DEFINITION | ||
|
||
# | ||
# federation-v2.8 | ||
# | ||
|
||
scalar ContextFieldValue | ||
|
||
directive @context(name: String!) repeatable on INTERFACE | OBJECT | UNION | ||
|
||
directive @fromContext(field: ContextFieldValue) on ARGUMENT_DEFINITION |
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