You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Represents options for formatting JSON data, to be used in the [JSON.GET](https://valkey.io/commands/json.get/) command.
@@ -80,6 +80,7 @@ export class GlideJson {
80
80
/**
81
81
* Sets the JSON value at the specified `path` stored at `key`.
82
82
*
83
+
* @param client The client to execute the command.
83
84
* @param key - The key of the JSON document.
84
85
* @param path - Represents the path within the JSON document where the value will be set.
85
86
* The key will be modified only if `value` is added as the last child in the specified `path`, or if the specified `path` acts as the parent of a new child being added.
@@ -123,8 +124,11 @@ export class GlideJson {
123
124
/**
124
125
* Retrieves the JSON value at the specified `paths` stored at `key`.
125
126
*
127
+
* @param client The client to execute the command.
126
128
* @param key - The key of the JSON document.
127
-
* @param options - Options for formatting the byte representation of the JSON data. See {@link JsonGetOptions}.
0 commit comments