Liking cljdoc? Tell your friends :D

clarango.collection-ops


cla-assoc!clj

(cla-assoc! collection-name key val)

Adds one document (val) to a collection (specified by collection-name) with a given key. Always uses the default database set in clarango.core.

Modeled on core/assoc (http://clojuredocs.org/clojure_core/clojure.core/assoc) Does the same, just on an ArangoDB collection. The difference is that you can currently only pass one key and one document to add to the collection, not several like in clojure.core/dissoc

Adds one document (val) to a collection (specified by collection-name) with a given key.
Always uses the default database set in clarango.core.

Modeled on core/assoc (http://clojuredocs.org/clojure_core/clojure.core/assoc)
Does the same, just on an ArangoDB collection. The difference is that you can currently only pass one key and one document
to add to the collection, not several like in clojure.core/dissoc
sourceraw docstring

cla-conj!clj

(cla-conj! collection-name x)

Adds one document (x) to a collection (specified by collection-name). The key for the document is generated by ArangoDB. Always uses the default database set in clarango.core.

Modeled on core/conj (http://clojuredocs.org/clojure_core/clojure.core/conj) Does the same, just on an ArangoDB collection. The difference is that you can currently only pass one element to add to the collection, not several like in clojure.core/conj

Adds one document (x) to a collection (specified by collection-name). The key for the document is generated by ArangoDB.
Always uses the default database set in clarango.core.

Modeled on core/conj (http://clojuredocs.org/clojure_core/clojure.core/conj)
Does the same, just on an ArangoDB collection. The difference is that you can currently only pass one element to add
to the collection, not several like in clojure.core/conj
sourceraw docstring

cla-dissoc!clj

(cla-dissoc! collection-name key)

Removes a document thats identified by the key parameter from a collection.

Modeled on core/dissoc (http://clojuredocs.org/clojure_core/clojure.core/dissoc) Does the same, just on an ArangoDB collection. The difference is that you can currently only pass one key to remove from the collection, not several like in clojure.core/dissoc

Removes a document thats identified by the key parameter from a collection.

Modeled on core/dissoc (http://clojuredocs.org/clojure_core/clojure.core/dissoc)
Does the same, just on an ArangoDB collection. The difference is that you can currently only pass one key to remove
from the collection, not several like in clojure.core/dissoc
sourceraw docstring

cla-get!clj

(cla-get! collection-name key)

Gets a document out of a collection by key.

Modeled on core/get (http://clojuredocs.org/clojure_core/clojure.core/get) Does the same, just on an ArangoDB collection.

Currently this method throws an error when used with a key that does not exist. This should be changed in the future, also it should be possible to give a value that is returned by the function, in case the key does not exist.

Gets a document out of a collection by key.

Modeled on core/get (http://clojuredocs.org/clojure_core/clojure.core/get)
Does the same, just on an ArangoDB collection.

Currently this method throws an error when used with a key that does not exist. This should be changed in the future, 
also it should be possible to give a value that is returned by the function, in case the key does not exist.
sourceraw docstring

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

× close