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

Basic Shareable example #32

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
58 changes: 58 additions & 0 deletions rfcs/test-cases/shareable-basic/federation/_supergraph.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
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 {
LOCATIONS @join__graph(name: "locations", url: "https://flyby-locations-sub.herokuapp.com/")
REVIEWS @join__graph(name: "reviews", url: "https://flyby-reviews-sub.herokuapp.com/")
}

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
}

type Location
@join__type(graph: LOCATIONS, key: "id")
@join__type(graph: REVIEWS, key: "id")
{
id: ID!
name: String! @join__field(graph: LOCATIONS)
description: String!
}

type Query
@join__type(graph: LOCATIONS)
@join__type(graph: REVIEWS)
{
locations: [Location!]! @join__field(graph: LOCATIONS)
topLocations: [Location!]! @join__field(graph: REVIEWS)
}
15 changes: 15 additions & 0 deletions rfcs/test-cases/shareable-basic/federation/a.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
extend schema
@link(
url: "https://specs.apollo.dev/federation/v2.5",
import: ["@key", "@shareable"]
)

type Query {
locations: [Location!]!
}

type Location @key(fields: "id") {
id: ID!
name: String!
description: String! @shareable
}
14 changes: 14 additions & 0 deletions rfcs/test-cases/shareable-basic/federation/b.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
extend schema
@link(
url: "https://specs.apollo.dev/federation/v2.5",
import: ["@key", "@shareable"]
)

type Query {
topLocations: [Location!]!
}

type Location @key(fields: "id") {
id: ID!
description: String! @shareable
}