hvals #
Returns all values contained in a hash.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/ms/_hvals/<_id>
Method: GET
Other protocols #
{
"controller": "ms",
"action": "hvals",
"_id": "<key>"
}
Arguments #
_id
: hash key identifier
Response #
Returns a list of hash values.
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "hvals",
"collection": null,
"index": null,
"result": [
"<value of field1>",
"<value of field2>",
"..."
]
}
Edit this page on Github(opens new window)