[Docs] Add example for updating meta field (#35893)

This commit is contained in:
Peter Dyson 2018-11-28 21:04:57 +10:00 committed by Christoph Büscher
parent 33865211db
commit 1f25a0bd31
1 changed files with 17 additions and 1 deletions

View File

@ -27,4 +27,20 @@ PUT my_index
<<indices-get-mapping,GET mapping>> API.
The `_meta` field can be updated on an existing type using the
<<indices-put-mapping,PUT mapping>> API.
<<indices-put-mapping,PUT mapping>> API:
[source,js]
--------------------------------------------------
PUT my_index/_mapping/_doc
{
"_meta": {
"class": "MyApp2::User3",
"version": {
"min": "1.3",
"max": "1.5"
}
}
}
--------------------------------------------------
// CONSOLE
// TEST[continued]