apollo-federation 2.16.2

Apollo Federation
Documentation
---
source: apollo-federation/src/connectors/expand/tests/mod.rs
expression: api_schema
input_file: apollo-federation/src/connectors/expand/tests/schemas/expand/chained_methods_v0_4.graphql
---
directive @defer(label: String, if: Boolean! = true) on FRAGMENT_SPREAD | INLINE_FRAGMENT

type Query {
  mappedActive: ThingConnection
  firstActive: ThingResult
  deepFind: ThingResult
}

type ThingConnection {
  things: [Thing]
}

type ThingResult {
  thing: Thing
}

type Thing {
  id: ID!
  name: String
}