DELETE is the command to delete a value.
from enum value: DELETE = 3;
GET is the command to get a value.
from enum value: GET = 0;
LIST is the command to list keys with an optional prefix.
from enum value: LIST = 1;
PUT is the command to put a value.
from enum value: PUT = 2;
Generated using TypeDoc
QueryCommand is the type of the query.
Generated
from enum v1.QueryRequest.QueryCommand