/graphql-moleculer-kstream

Old and random trash around kstream sourced graphql and moleculer for fun

Primary LanguageJavaScript

Run

docker-compose up --build

Demo

Hit http://localhost:4000/ for the GraphQL playground and enter a query. For example:

query {
  author(id: "ck0wn0wlw000101p1plo1bm2k") {
    name
  }
}

It should result in something like:

{
  "data": {
    "author": {
      "name": "J.R.R Tolkien"
    }
  }
}