Grapher is a GraphQL Client for Elixir. It allows you to manage multiple "schemas" as well as providing for a simple Document storage.
Grapher is probably better suited for use in an application that needs to consume one or more GraphQL APIs than it is for quick discovery/exploration of an API. Although nothing prevents you from using it to run queries from an iex
session.
Available in Hex, the package can be installed
by adding grapher
to your list of dependencies in mix.exs
:
def deps do
[
{:grapher, "~> 0.9.0"}
]
end
There are three main steps to executing a Query or Mutation with Grapher:
- Registering a Context for the requests
- Registering one or more Documents to use in requests
- Executing a Document against a Schema
Grapher uses what it calls a SchemaContext
to identify where a Schema lives and any headers that should be used in requests. There is nothing preventing the definition of multiple contexts for the same schema, you just need to give each context a unique name.
iex> context = SchemaContext.new("http://www.example.com/graphql", ["Authentication": "bearer 88"])
iex> Grapher.SchemaContext.Store.add_context(:example, context)
:ok
Once a Context has been registered it can be retireved and/or updated
iex> Grapher.SchemaContext.Store.get(:example)
%SchemaContext{url: "http://www.example.com/graphql", headers: ["Authentication": "bearer 88"]}
iex> new_context = SchemaContext.new("http://axiom.atmedia.xyz/graphql")
iex> Grapher.SchemaContext.Store.update_context(:example, new_context)
:ok
A Document in Grapher is nothing more than the literal query document and a function to be used to translate it to an acceptable payload. Currently the only supported transport layer is HTTP.
iex> doc = Document.new("query { allListings { id } }", :query)
%Document{document: "query { allListings { id } }", transport_formatter: &Request.query/2}
In order to use a document you currently need to put it into the store first.
iex> Grapher.Document.Store.add_document(:listings, doc)
:ok
Once you have stored a query you can always update it
iex> Grapher.Document.Store.update_document(:listings, doc)
:ok
Once you have one or more contexts and one or more documents you can start executing documents in a given context.
iex> Grapher.Executor.run(:listings, :example)
%Grapher.GraphQL.Response{data: %{allListings: [%{id: 8}, %{id: 9}]}, errors: :empty, status_code: 200, transport_error: :empty}
If your document allows for variables you can always add them when you run it
iex> doc = Document.new("query user($userId: ID!){ user(userId: $userID) { name } }", :query)
iex> Grapher.Document.Store.add_document(:flexible, doc)
iex> Grapher.Executor.run(:flexible, :example, %{userId: "bob"})
%Grapher.GraphQL.Response{data: %{user: %{name: "Bob Jones"}}, errors: :empty, status_code: 200, transport_error: :empty}
If you want to have your default documents and contexts ready and waiting when your application starts up you just need to add a module to your application which implements the Grapher.SetupBehaviour
and then set the :setup_module
config value for grapher
config :grapher,
setup_module: MySetupModule
At AT Media our Marketplace API really consists of three services, two of which live behind the main public API. Unfortunately this complicates our logging process. It is not easy to determine which service requests were spawned by a particular public API request. For this reason we have introduced a new Context which is scoped to the life of a process.
To start tracking/sharing data with calls from the current thread simply initialize a Grapher.Context
struct with the data you wish to share across requests:
iex> context = Grapher.Context.new(headers: ["request-id": "38bdkhg348thgdk"])
iex> State.update(context)
:ok
Whenever you execute a call with grapher
it will check for a context belonging to the current process (pid
) and merge the data in the context with any data provided to the query.
NOTE: Each call to State.update/1
will replace any saved context with the context provided.