Liking cljdoc? Tell your friends :D
Clojure only.

clojurewerkz.neocons.rest.batch

Batch operation execution

Batch operation execution
raw docstring

performclj

(perform connection ops)

Submits a batch of operations for execution, returning a lazy sequence of results. Operations must include two keys:

:method ("POST", "GET", etc) :to (a path relative to the database root URI)

and may or may not include

:data (a map of what would be in the request body in cases non-batch API was used) :id (request id that is used to refer to previously executed operations in the same batch)

If you need to insert a batch of nodes at once, consider using neocons.rest.nodes/create-batch.

See http://docs.neo4j.org/chunked/milestone/rest-api-batch-ops.html for more information.

Submits a batch of operations for execution, returning a lazy sequence of results. Operations must include
two keys:

:method ("POST", "GET", etc)
:to (a path relative to the database root URI)

and may or may not include

:data (a map of what would be in the request body in cases non-batch API was used)
:id   (request id that is used to refer to previously executed operations in the same batch)

If you need to insert a batch of nodes at once, consider using neocons.rest.nodes/create-batch.

See http://docs.neo4j.org/chunked/milestone/rest-api-batch-ops.html for more information.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close