Dlex is a gRPC based client for the Dgraph database in Elixir. It uses the DBConnection behaviour to support transactions and connection pooling.
Small, efficient codebase. Aims for a full Dgraph support. Supports transactions (starting from Dgraph version: 1.0.9
),
delete mutations and low-level parameterized queries. DSL is planned.
Now supports the new dgraph 1.1.x Type System.
If available in Hex, the package can be installed
by adding dlex
to your list of dependencies in mix.exs
:
Preffered and more performant option is to use grpc
:
def deps do
[
{:jason, "~> 1.0"},
{:dlex, "~> 0.1.0"}
]
end
http
transport:
def deps do
[
{:jason, "~> 1.0"},
{:castore, "~> 0.1.0", optional: true},
{:mint, github: "ericmj/mint", branch: "master"},
{:dlex, "~> 0.1.0"}
]
end
{:ok, conn} = Dlex.start_link(name: :example) # default try to connect `localhost:9080` by default
Dlex.alter!(conn, %{drop_all: true})
{:ok, _} = Dlex.alter(conn, "name: string @index(term) .")
{:ok, %{"uid" => uid}} = Dlex.mutate(conn, %{
"name" => "Alice",
"friends" => [%{"name" => "Betty"}, %{"name" => "Mark"}]
}, return_json: true) # return the same json with uids
Dlex.mutate(conn, ~s|_:foo <name> "Bar" .|) # or in nquads format
by_name = "query by_name($name: string) {by_name(func: eq(name, $name)) {uid expand(_all_)}}"
Dlex.query(conn, by_name, %{"$name" => "Betty"})
Dlex.delete(conn, %{"uid" => uid}) # delete Alice node
Modification of schema supported with string and map form (which is returned by query_schema
):
Dlex.alter(conn, "name: string @index(term, fulltext, trigram) @lang .")
# equivalent to in map form
Dlex.alter(conn, [
%{
"predicate" => "name",
"type" => "string",
"index" => true,
"lang" => true,
"tokenizer" => ["term", "fulltext", "trigram"]
}
])
- Install dependencies
mix deps.get
- Start the local dgraph server (requires Docker)
./start-server.sh
This starts a local server bound to ports 9090 (GRPC) and 8090 (HTTP) - Run
mix test
NOTE: You may stop the server using ./stop-server.sh
- Install
protoc
(cpp) here orbrew install protobuf
on MacOS. - Install protoc plugin
protoc-gen-elixir
for Elixir . NOTE: You have to make sureprotoc-gen-elixir
(this name is important) is in your PATH.
mix escript.install hex protobuf
By updating api.proto, generate Elixir code
- Generate Elixir code using protoc
protoc --elixir_out=plugins=grpc:. lib/api.proto
-
Files
lib/api.pb.ex
will be generated -
Rename
lib/api.pb.ex
tolib/dlex/api.ex
and addalias Dlex.Api
to be complient with Elixir naming
Inspired by exdgraph, but as I saw too many parts for changes or parts, which I would like to have completely different, so that it was easier to start from scratch with these goals: small codebase, small natural abstraction, efficient, less opionated, less dependencies.
So you can choose freely which pool implementation to use (poolboy or db_connection intern pool implementation) or which JSON adapter to use. Fewer dependencies.
It seems for me more natural to have API names more or less matching actual query names.
For example Dlex.mutate()
instead of ExDgraph.set_map
for JSON-based mutations. Actually, Dlex.mutate
infers
the type (JSON or nquads) from data passed to a function.
Copyright 2018 Dmitry Russ
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.