Indexes

Copied!
( [database] )

Description

The Indexes function, when executed with Paginate, returns an array of References for all indexes in the specified child database. If a child database is not specified, the returned index references all belong to the current database.

When a child database is specified, an admin key must be used to call Indexes (server or client keys, or ABAC tokens, cannot be used to access a child database).

Parameters

Argument Type Definition and Requirements

database

Optional - A reference to a child database. If not specified, the current database is used.

Returns

A Set reference for the available indexes in the specified child database (or the current database if database is not specified).

Examples

The following query gets the references to all indexes in the current database:

Copied!
client.query(q.(q.()))
.then((ret) => console.log(ret))
[Ref(id=spells_by_element, collection=(id=indexes))]

The following query demonstrates what happens when no indexes exist:

Copied!
client.query(
  q.(q.())
)
.then((ret) => console.log(ret))
{ data: [] }

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!