apollo-router 2.13.1

A configurable, high-performance routing runtime for Apollo Federation 🚀
Documentation
schema
    @link(url: "https://specs.apollo.dev/link/v1.0")
    @link(url: "https://specs.apollo.dev/inaccessible/v0.2", for: SECURITY)
    @link(url: "https://specs.apollo.dev/join/v0.3", for: EXECUTION) {
    query: Query
    subscription: Subscription
}

directive @inaccessible on FIELD_DEFINITION | OBJECT | INTERFACE | UNION | ARGUMENT_DEFINITION | SCALAR | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
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

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

scalar join__FieldSet
scalar link__Import

enum join__Graph {
    USER @join__graph(name: "user", url: "http://localhost:4001/graphql")
    ORGA @join__graph(name: "orga", url: "http://localhost:4002/graphql")
}

enum link__Purpose {
    SECURITY
    EXECUTION
}

type Query @join__type(graph: USER) @join__type(graph: ORGA) {
    currentUser: User
        @join__field(graph: USER)
        @join__directive(
            graphs: [USER]
            name: "federation__cacheTag"
            args: { format: "currentUser" }
        )
    otherUser: User @join__field(graph: USER)
    orga(id: ID): Organization @join__field(graph: ORGA)
}

type Subscription @join__type(graph: USER) {
    userWasCreated: User
}

type User
    @join__type(graph: ORGA, key: "id")
    @join__type(graph: USER, key: "id")
    @join__directive(
        graphs: [USER, ORGA]
        name: "federation__cacheTag"
        args: { format: "user" }
    )
    @join__directive(
        graphs: [USER, ORGA]
        name: "federation__cacheTag"
        args: { format: "user-{$key.id}" }
    ) {
    id: ID!
    name: String @join__field(graph: USER)
    phone: String @join__field(graph: USER)
    activeOrganization: Organization @join__field(graph: USER)
    allOrganizations: [Organization] @join__field(graph: USER)
}

type Organization
    @join__type(graph: ORGA, key: "id")
    @join__type(graph: USER, key: "id")
    @join__directive(
        graphs: [USER, ORGA]
        name: "federation__cacheTag"
        args: { format: "organization" }
    )
    @join__directive(
        graphs: [USER, ORGA]
        name: "federation__cacheTag"
        args: { format: "organization-{$key.id}" }
    ) {
    id: ID
    creatorUser: User @join__field(graph: ORGA)
    name: String @join__field(graph: ORGA)
    nonNullId: ID! @join__field(graph: ORGA)
    suborga: [Organization] @join__field(graph: ORGA)
}