apollo-federation 2.13.1

Apollo Federation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extend schema
  @link(
    url: "https://specs.apollo.dev/federation/v2.10"
    import: ["@key", "@external", "@requires"]
  )
  @link(
    url: "https://specs.apollo.dev/connect/v0.1", 
    import: ["@connect"]
  )

type Query {
  something: String
    @connect(
      http: { GET: "http://localhost" }
      selection: "$"
    )
}