deleteFields #
Deletes fields of an existing document.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/<index>/<collection>/<documentId>/_fields[?refresh=wait_for][&silent]
Method: DELETE
Body:{
"fields": [
// path of fields to remove
]
}Other protocols #
{
"index": "<index>",
"collection": "<collection>",
"controller": "document",
"action": "deleteFields",
"_id": "<documentId>",
"refresh": "wait_for",
"body": {
"fields": [
// path of fields to remove
]
}
}Kourou #
kourou document:deleteFields <index> <collection> <body>
kourou document:deleteFields <index> <collection> <body> -a silent=trueArguments #
collection: collection name_id: unique ID of the document where the fields should be removedindex: index name
Optional: #
refresh: if set towait_for, Kuzzle will not respond until the new document content is indexedsource: if set totrue, the response will contain the new updated documentsilent: if set, then Kuzzle will not generate notificationsAvailable since 2.9.2
Body properties #
fields: an array of strings. Each string represents a path (see lodash path) to a specific field to remove
Response #
Returns an object containing updated document information, with the following properties:
_id: document unique identifier_source: the new document content, ifsourceis set totrue_version: updated document version number
{
"status": 200,
"error": null,
"index": "<index>",
"collection": "<collection>",
"controller": "document",
"action": "deleteFields",
"requestId": "<unique request identifier>",
"result": {
"_id": "<documentId>",
"_source": {
// new document content
},
"_version": 13
}
}