We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
item.value
item.json
1 parent f476c38 commit 43969a3Copy full SHA for 43969a3
packages/json/lib/commands/MSET.ts
@@ -18,7 +18,7 @@ export function transformArguments(items: Array<JsonMSetItem>): Array<string> {
18
const item = items[i];
19
args[argsIndex++] = item.key;
20
args[argsIndex++] = item.path;
21
- args[argsIndex++] = transformRedisJsonArgument(item.json);
+ args[argsIndex++] = transformRedisJsonArgument(item.value);
22
}
23
24
return args;
0 commit comments