Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Latest commit

 

History

History
45 lines (31 loc) · 1.27 KB

File metadata and controls

45 lines (31 loc) · 1.27 KB
code type title description
true
page
getMapping
Return collection mapping

getMapping

Returns the mapping for the given collection.

Signature

std::string getMapping(const std::string& index, const std::string& collection);

std::string getMapping(
    const std::string& index,
    const std::string& collection,
    const kuzzleio::query_options& options);

Arguments

Arguments Type Description
index
const std::string&
Index name
collection
const std::string&
Collection name
options
kuzzleio::query_options*
Query options

options

Additional query options

Property Type
(default)
Description
queuable
bool

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

Return

A JSON string representing the collection data mapping.

Usage

<<< ./snippets/get-mapping.cpp