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

Federation Test Suite: Failing Tests #6076

Closed
wants to merge 1 commit into from
Closed
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
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

type Category
@join__type(graph: PRICE, key: "id tag")
@join__type(graph: PRODUCTS, key: "id")
{
id: String!
tag: String
mainProduct: Product! @join__field(graph: PRODUCTS)
}

scalar join__FieldSet

enum join__Graph {
LINK @join__graph(name: "link", url: "https://federation-compatibility.theguild.workers.dev/complex-entity-call/link")
LIST @join__graph(name: "list", url: "https://federation-compatibility.theguild.workers.dev/complex-entity-call/list")
PRICE @join__graph(name: "price", url: "https://federation-compatibility.theguild.workers.dev/complex-entity-call/price")
PRODUCTS @join__graph(name: "products", url: "https://federation-compatibility.theguild.workers.dev/complex-entity-call/products")
}

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 Price
@join__type(graph: PRICE)
{
price: Float!
}

type Product
@join__type(graph: LINK, key: "id")
@join__type(graph: LINK, key: "id pid")
@join__type(graph: LIST, key: "id pid")
@join__type(graph: PRICE, key: "id pid category{id tag}")
@join__type(graph: PRODUCTS, key: "id", extension: true)
{
id: String!
pid: String @join__field(graph: LINK, type: "String!") @join__field(graph: LIST, type: "String") @join__field(graph: PRICE, type: "String")
price: Price @join__field(graph: PRICE)
category: Category @join__field(graph: PRICE) @join__field(graph: PRODUCTS)
}

type ProductList
@join__type(graph: LIST, key: "products{id pid}")
@join__type(graph: PRICE, key: "products{id pid category{id tag}} selected{id}")
@join__type(graph: PRODUCTS, key: "products{id}")
{
products: [Product!]!
first: Product @join__field(graph: LIST) @join__field(graph: PRICE)
selected: Product @join__field(graph: LIST) @join__field(graph: PRICE)
}

type Query
@join__type(graph: LINK)
@join__type(graph: LIST)
@join__type(graph: PRICE)
@join__type(graph: PRODUCTS)
{
topProducts: ProductList! @join__field(graph: PRODUCTS)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[
{
"query": "\n query {\n topProducts {\n products {\n id\n pid\n price {\n price\n }\n category {\n mainProduct {\n id\n }\n id\n tag\n }\n }\n selected {\n id\n }\n first {\n id\n }\n }\n }\n ",
"expected": {
"data": {
"topProducts": {
"products": [
{
"id": "1",
"pid": "p1",
"price": {
"price": 100
},
"category": {
"mainProduct": {
"id": "1"
},
"id": "c1",
"tag": "t1"
}
},
{
"id": "2",
"pid": "p2",
"price": {
"price": 200
},
"category": {
"mainProduct": {
"id": "2"
},
"id": "c2",
"tag": "t2"
}
}
],
"selected": {
"id": "2"
},
"first": {
"id": "1"
}
}
}
}
}
]
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.theguild.workers.dev/interface-object-with-requires/a")
B @join__graph(name: "b", url: "https://federation-compatibility.theguild.workers.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
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
[
{
"query": "\n query {\n anotherUsers {\n id\n name\n username\n }\n }\n ",
"expected": {
"data": {
"anotherUsers": [
{
"id": "u1",
"name": "u1-name",
"username": "u1-username"
},
{
"id": "u2",
"name": "u2-name",
"username": "u2-username"
}
]
}
}
},
{
"query": "\n query {\n users {\n id\n name\n username\n }\n }\n ",
"expected": {
"data": {
"users": [
{
"id": "u1",
"name": "u1-name",
"username": "u1-username"
},
{
"id": "u2",
"name": "u2-name",
"username": "u2-username"
}
]
}
}
},
{
"query": "\n query {\n anotherUsers {\n ... on User {\n age\n }\n }\n }\n ",
"expected": {
"data": {
"anotherUsers": [
{
"age": 11
},
{
"age": 22
}
]
}
}
},
{
"query": "\n query {\n users {\n ... on User {\n age\n }\n }\n }\n ",
"expected": {
"data": {
"users": [
{
"age": 11
},
{
"age": 22
}
]
}
}
},
{
"query": "\n query {\n anotherUsers {\n ... on User {\n age\n id\n name\n username\n }\n id\n name\n }\n }\n ",
"expected": {
"data": {
"anotherUsers": [
{
"age": 11,
"id": "u1",
"name": "u1-name",
"username": "u1-username"
},
{
"age": 22,
"id": "u2",
"name": "u2-name",
"username": "u2-username"
}
]
}
}
},
{
"query": "\n query {\n users {\n ... on User {\n age\n id\n name\n username\n }\n id\n name\n }\n }\n ",
"expected": {
"data": {
"users": [
{
"age": 11,
"id": "u1",
"name": "u1-name",
"username": "u1-username"
},
{
"age": 22,
"id": "u2",
"name": "u2-name",
"username": "u2-username"
}
]
}
}
},
{
"query": "\n query {\n users {\n ... on User {\n age\n id\n name\n username\n }\n id\n name\n }\n }\n ",
"expected": {
"data": {
"users": [
{
"age": 11,
"id": "u1",
"name": "u1-name",
"username": "u1-username"
},
{
"age": 22,
"id": "u2",
"name": "u2-name",
"username": "u2-username"
}
]
}
}
}
]