-
-
Notifications
You must be signed in to change notification settings - Fork 816
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(federation): interface objects (#6143)
* feat(federation): interface objects * Fix * Fix build error * More * Good idea
- Loading branch information
Showing
10 changed files
with
651 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@graphql-tools/federation": patch | ||
--- | ||
|
||
Implement interface objects support |
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
68 changes: 68 additions & 0 deletions
68
.../test/fixtures/federation-compatibility/interface-object-with-requires/supergraph.graphql
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,68 @@ | ||
schema | ||
@link(url: "https://specs.apollo.dev/link/v1.0") | ||
@link(url: "https://specs.apollo.dev/join/v0.3", for: EXECUTION) | ||
{ | ||
query: Query | ||
} | ||
|
||
directive @join__enumValue(graph: join__Graph!) repeatable on ENUM_VALUE | ||
|
||
directive @join__field(graph: join__Graph, requires: join__FieldSet, provides: join__FieldSet, type: String, external: Boolean, override: String, usedOverridden: Boolean) repeatable on FIELD_DEFINITION | INPUT_FIELD_DEFINITION | ||
|
||
directive @join__graph(name: String!, url: String!) on ENUM_VALUE | ||
|
||
directive @join__implements(graph: join__Graph!, interface: String!) repeatable on OBJECT | INTERFACE | ||
|
||
directive @join__type(graph: join__Graph!, key: join__FieldSet, extension: Boolean! = false, resolvable: Boolean! = true, isInterfaceObject: Boolean! = false) repeatable on OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT | SCALAR | ||
|
||
directive @join__unionMember(graph: join__Graph!, member: String!) repeatable on UNION | ||
|
||
directive @link(url: String, as: String, for: link__Purpose, import: [link__Import]) repeatable on SCHEMA | ||
|
||
scalar join__FieldSet | ||
|
||
enum join__Graph { | ||
A @join__graph(name: "a", url: "https://federation-compatibility.the-guild.dev/interface-object-with-requires/a") | ||
B @join__graph(name: "b", url: "https://federation-compatibility.the-guild.dev/interface-object-with-requires/b") | ||
} | ||
|
||
scalar link__Import | ||
|
||
enum link__Purpose { | ||
""" | ||
`SECURITY` features provide metadata necessary to securely resolve fields. | ||
""" | ||
SECURITY | ||
|
||
""" | ||
`EXECUTION` features provide metadata necessary for operation execution. | ||
""" | ||
EXECUTION | ||
} | ||
|
||
interface NodeWithName | ||
@join__type(graph: A, key: "id") | ||
@join__type(graph: B, key: "id", isInterfaceObject: true) | ||
{ | ||
id: ID! | ||
name: String @join__field(graph: A) @join__field(graph: B, external: true) | ||
username: String @join__field(graph: B, requires: "name") | ||
} | ||
|
||
type Query | ||
@join__type(graph: A) | ||
@join__type(graph: B) | ||
{ | ||
users: [NodeWithName!]! @join__field(graph: A) | ||
anotherUsers: [NodeWithName] @join__field(graph: B) | ||
} | ||
|
||
type User implements NodeWithName | ||
@join__implements(graph: A, interface: "NodeWithName") | ||
@join__type(graph: A, key: "id") | ||
{ | ||
id: ID! | ||
name: String | ||
age: Int | ||
username: String @join__field | ||
} |
Oops, something went wrong.