Core
Framework v2.x
2

getIndexAndCollection #

Available since 2.11.0

Returns the index and collection specified in the request.

Arguments #

Copied to clipboard!
getIndexAndCollection (): { index: string, collection: string }

Example #

Copied to clipboard!
const { index, collection } = request.getIndexAndCollection();
// equivalent
const { index, collection } = request.input.args;
//+ checks to make sure that "index" and "collection" are of the right type
// and throw standard API error when it's not the case