SDK
SDK C# v2.x
2

GetMappingAsync #

Returns the mapping for the given collection.

Arguments #

public async Task<JObject> GetMappingAsync(
        string index,
        string collection);
ArgumentTypeDescription
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);
}