hgetall #
Returns all fields and values of a hash.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/ms/_hgetall/<_id>
Method: GET
Other protocols #
{
"controller": "ms",
"action": "hgetall",
"_id": "<key>"
}
Arguments #
_id
: hash key identifier
Response #
Returns the requested hash content as a field: value
object.
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "hgetall",
"collection": null,
"index": null,
"result": {
"field1": "value",
"field2": "value",
"...": "..."
}
}
Edit this page on Github(opens new window)