Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1012 Bytes

File metadata and controls

40 lines (27 loc) · 1012 Bytes
code type title description
true
page
exists
Check if collection exists

exists

Check if a collection exists in Kuzzle.


exists(index, collection, [options]);

Arguments Type Description
index
string
Index name
collection
string
Collection name
options
object
Query options

options

Additional query options

Property Type
(default)
Description
queuable
boolean

(true)
If true, queues the request during downtime, until connected to Kuzzle again

Resolves

Resolves to true if the collection exists, false otherwise.

Usage

<<< ./snippets/exists.js