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
directive @tag(name: String!) repeatable on FIELD_DEFINITION

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

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