GetMappingAsync #
Returns the mapping for the given collection.
Arguments #
public async Task<JObject> GetMappingAsync(
string index,
string collection);
Argument | Type | Description |
---|---|---|
index | string | Index name |
collection | string | Collection name |
Return #
A JObject representing the collection data mapping.
Usage #
try {
JObject mapping = await kuzzle.Collection.GetMappingAsync("nyc-open-data", "yellow-taxi");
Console.WriteLine(mapping["properties"]?.ToString(Formatting.None));
// {"properties":{"license":{"type":"keyword"},"driver":{"properties":{"name":{"type":"keyword"},"curriculum":{"type":"text"}}}}}
} catch (Exception e) {
Console.WriteLine(e);
}
Edit this page on Github(opens new window)