Liking cljdoc? Tell your friends :D
ClojureScript only.

firebase-cljs.database.query


FirebaseDatabaseQuerycljsprotocol

sort-bycljs

(sort-by _ sort)
(sort-by _ sort val)

Generates a new Query object ordered by the specified type.

Generates a new Query object ordered by the specified type.

take-lastcljs

(take-last _ limit)

Generates a new Query object limited to the last limit number of children.

Generates a new Query object limited to the last limit number of children.

takecljs

(take _ limit)

Generates a new Query object limited to the first limit number of children.

Generates a new Query object limited to the first limit number of children.

to-strcljs

(to-str _)

Returns string URL for this location.

Returns string URL for this location.

start-atcljs

(start-at _ val)
(start-at _ val key)

Creates a Query with the specified starting point. The generated Query includes children which match the specified starting point.

Creates a Query with the specified starting point. The generated Query includes children which match the specified starting point.

equal-tocljs

(equal-to _ val)
(equal-to _ val key)

Creates a Query which includes children which match the specified value.

Creates a Query which includes children which match the specified value.

get-refcljs

(get-ref _)

Get Query ref.

Get Query ref.

end-atcljs

(end-at _ val)
(end-at _ val key)

Creates a Query with the specified ending point. The generated Query includes children which match the specified ending point.

Creates a Query with the specified ending point. The generated Query includes children which match the specified ending point.

offcljs

(off _)
(off _ event)
(off _ event callback)
(off _ event callback failure)

Detaches a callback previously attached with on.

Detaches a callback previously attached with on.

oncecljs

(once _ event)
(once _ event callback)
(once _ event callback failure)

Listens for exactly one event of the specified event type, and then stops listening.

Listens for exactly one event of the specified event type, and then stops listening.

oncljs

(on _ event)
(on _ event callback)
(on _ event callback failure)

Listens for data changes at a particular location.

Listens for data changes at a particular location.

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

× close