movio / bramble

A federated GraphQL API gateway
https://movio.github.io/bramble/
MIT License
497 stars 53 forks source link

Update example services #180

Closed pkqk closed 1 year ago

pkqk commented 1 year ago

Set the services up with a slightly more interesting schema:

type Query {
  randomGizmo: Gizmo!
}

type Gizmo {
  id: ID!
  name: String!
  email: String!
  rating: Int1
}

Next plan is to add an example of the @namespace directive, and custom scalar types (once https://github.com/movio/bramble/pull/167 is merged)