apollo-federation 2.13.1

Apollo Federation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extend schema
@link(
    url: "https://specs.apollo.dev/connect/v0.2"
    import: ["@connect"]
)

type Query {
    me: User @connect(http: {GET: "http://127.0.0.1/something"}, selection: "id {blah}")
}

type User {
    id: ID!
}