Current section
Files
Jump to
Current section
Files
lib/arangoex/graph_edge.ex
defmodule Arangoex.GraphEdge do
@moduledoc "ArangoDB Graph Edge methods"
alias Arangoex.Endpoint
alias Arangoex.Utils
@doc """
Read in or outbound edges
GET /_api/edges/{collection-id}
"""
@spec edges(Endpoint.t, String.t, String.t, String.t) :: Arangoex.ok_error(map)
def edges(endpoint, collection_name, vertex_id, direction \\ nil) do
query = case direction do
d when d in ["in", "out"] -> Utils.opts_to_query([vertex: vertex_id, direction: d], [:vertex, :direction])
nil -> Utils.opts_to_query([vertex: vertex_id], [:vertex])
end
endpoint
|> Endpoint.get("/edges/#{collection_name}#{query}")
end
end