Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 427 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 427 Bytes

Elixir client for EdgeDB

Client documentation is available on edgedb.com and on hex.pm.

How to use:

iex(1)> {:ok, client} = EdgeDB.start_link() # NOTE: you should initialize EdgeDB project first
iex(2)> arg = [16, 13, 2, 42]
iex(3)> ^arg = EdgeDB.query_required_single!(client, "select <array<int64>>$arg", arg: arg)
[16, 13, 2, 42]