subgraph-mock 0.2.1

A standalone mock subgraph server designed to be placed behind a supergraph for testing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
directive @tag(name: String!) repeatable on FIELD_DEFINITION

type Query {
  allPandas: [Panda]
  panda(name: ID!): Panda
  _service: _Service!
}

type Panda {
  name: ID!
  favoriteFood: String @tag(name: "nom-nom-nom")
}

type _Service {
  sdl: String!
}