Skip to content

Instantly share code, notes, and snippets.

@pinx
Created April 16, 2017 12:56
Show Gist options
  • Save pinx/09d41f4bccb0d91d5fce544922d0dfd6 to your computer and use it in GitHub Desktop.
Save pinx/09d41f4bccb0d91d5fce544922d0dfd6 to your computer and use it in GitHub Desktop.
Arango Elm encoded query
query : Http.Body
query =
Encode.object
[ ( "query", Encode.string "FOR assy IN assemblies FILTER assy.parent_id == NULL LIMIT 100 RETURN assy" )
, ( "batchSize", Encode.int 100 )
]
|> Http.jsonBody
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment