apollo-federation 2.13.1

Apollo Federation
Documentation
extend schema
  @link(
    url: "https://specs.apollo.dev/federation/v2.8"
    import: [
      "@key"
      "@context"
      "@fromContext"
      "@interfaceObject"
      "@external"
      "@requires"
      "@provides"
    ]
  )
  @link(
    url: "https://specs.apollo.dev/connect/v0.2"
    import: ["@connect", "@source"]
  )

type Query {
  resources: [String!]!
    @connect(http: { GET: "http://127.0.0.1" }, selection: "$")
}