my_arangoex v0.1.0 MyArangoex.Simple
ArangoDB Simple methods
Summary
Functions
Return all documents
Return a random document
Find documents matching an example
Find documents by their keys
Returns documents near a coordinate
Simple query by-example
Fulltext index query
Simple range query
Remove documents by example
Remove documents by their keys
Replace documents by example
Update documents by example
Find documents within a radius around a coordinate
Functions
all(MyArangoex.Endpoint.t, MyArangoex.Collection.t, keyword) :: MyArangoex.ok_error(map)
Return all documents
PUT /_api/simple/all
any(MyArangoex.Endpoint.t, MyArangoex.Collection.t) :: MyArangoex.ok_error(map)
Return a random document
PUT /_api/simple/any
find_by_example(MyArangoex.Endpoint.t, MyArangoex.Collection.t, map) :: MyArangoex.ok_error(map)
Find documents matching an example
PUT /_api/simple/first-example
lookup_by_keys(MyArangoex.Endpoint.t, MyArangoex.Collection.t, [String.t]) :: MyArangoex.ok_error(map)
Find documents by their keys
PUT /_api/simple/lookup-by-keys
near(MyArangoex.Endpoint.t, MyArangoex.Collection.t, float, float, keyword) :: MyArangoex.ok_error(map)
Returns documents near a coordinate
PUT /_api/simple/near
query_by_example(MyArangoex.Endpoint.t, MyArangoex.Collection.t, map, keyword) :: MyArangoex.ok_error(map)
Simple query by-example
PUT /_api/simple/by-example
query_fulltext(MyArangoex.Endpoint.t, MyArangoex.Collection.t, String.t, String.t, keyword) :: MyArangoex.ok_error(map)
Fulltext index query
PUT /_api/simple/fulltext
range(MyArangoex.Endpoint.t, MyArangoex.Collection.t, String.t, float, float, keyword) :: MyArangoex.ok_error(map)
Simple range query
PUT /_api/simple/range
Remove documents by example
PUT /_api/simple/remove-by-example
remove_by_keys(MyArangoex.Endpoint.t, MyArangoex.Collection.t, [String.t], keyword) :: MyArangoex.ok_error(map)
Remove documents by their keys
PUT /_api/simple/remove-by-keys
replace_by_example(MyArangoex.Endpoint.t, MyArangoex.Collection.t, map, map, keyword) :: MyArangoex.ok_error(map)
Replace documents by example
PUT /_api/simple/replace-by-example
update_by_example(MyArangoex.Endpoint.t, MyArangoex.Collection.t, map, map, keyword) :: MyArangoex.ok_error(map)
Update documents by example
PUT /_api/simple/update-by-example
within(MyArangoex.Endpoint.t, MyArangoex.Collection.t, float, float, float, keyword) :: MyArangoex.ok_error(map)
Find documents within a radius around a coordinate
PUT /_api/simple/within
within_rectangle(MyArangoex.Endpoint.t, MyArangoex.Collection.t, float, float, float, float, keyword) :: MyArangoex.ok_error(map)
Within rectangle query
PUT /_api/simple/within-rectangle