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

Support @join__directive(graphs, name, args) directives #2894

Merged
merged 12 commits into from
Jan 12, 2024
Merged
6 changes: 6 additions & 0 deletions .changeset/real-comics-stare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@apollo/composition": minor
"@apollo/federation-internals": minor
---

Support `@join__directive(graphs, name, args)` directives
1 change: 1 addition & 0 deletions .cspell/cspell-dict.txt
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ subgpraph
subgrahs
SUBGRAPHA
SUBGRAPHB
SUBGRAPHC
subraph
subraphs
Substrat
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ directive @join__unionMember(graph: join__Graph!, member: String!) repeatable on

directive @join__enumValue(graph: join__Graph!) repeatable on ENUM_VALUE

directive @join__directive(graphs: [join__Graph!], name: String!, args: join__DirectiveArguments) repeatable on SCHEMA | OBJECT | INTERFACE | FIELD_DEFINITION

directive @mytag(name: String!) repeatable on FIELD_DEFINITION | OBJECT | INTERFACE | UNION | ARGUMENT_DEFINITION | SCALAR | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION | SCHEMA

directive @tag(name: String!, prop: String!) on FIELD_DEFINITION | OBJECT
Expand All @@ -49,6 +51,8 @@ enum join__Graph {

scalar join__FieldSet

scalar join__DirectiveArguments

type Query
@join__type(graph: SUBGRAPHA)
@join__type(graph: SUBGRAPHB)
Expand Down
Loading