graphql-composition 0.12.2

An implementation of GraphQL federated schema composition
Documentation
---
source: crates/graphql-composition/tests/composition_tests.rs
expression: actual_api_sdl
input_file: crates/graphql-composition/tests/composition/policy_basic/test.md
---
type B {
  foo: String
  id: ID!
}

type A {
  id: ID!
  names: String!
}

type User {
  id: ID!
  name: String @deprecated(reason: "we have no name")
}

type Query {
  oneA: A
  oneB: B
}