bruce / interrogator

Experiment: Utility, GraphQL API for WH40K data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Interrogator

Running it

After cloning the repository:

$ git submodule update --init
$ mix do deps.get, deps.compile, compile
$ iex -S mix phx.server

To see catalogue data manually:

Interrogator.Catalogue.SourceFile.list()
|> List.last # or whatever
|> Interrogator.Catalogue.SourceFile.read!

GraphQL

The GraphQL API is available at /api/graphql.

GraphiQL Playground is mounted at /api/graphiql.

Example

Showing all Chaos units whose name includes the word "Spawn," as provided by any catalogues that were sources (at least partially) from a codex, and also showing the catalogue name and related books:

query {
  catalogues(filter: {name: "chaos", bookType: CODEX}) {
    name
    books {
      name
      type
    }
    units(filter: {name: "spawn"}) {
      name
    }
  }
}

About

Experiment: Utility, GraphQL API for WH40K data


Languages

Language:Elixir 100.0%