Packages

An idiomatic Elixir client for TerminusDB, the version-controlled document graph database. Features DB management, document CRUD with streaming, schema frames, branching, diff/merge, a ~100-operator WOQL DSL, GraphQL, and telemetry. Built on Req with immutable configs and typed errors.

Current section

Files

Jump to
terminusdb_client lib terminus_db application.ex
Raw

lib/terminus_db/application.ex

defmodule TerminusDB.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = []
opts = [strategy: :one_for_one, name: TerminusDB.Supervisor]
Supervisor.start_link(children, opts)
end
end