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
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ let openSessionCount =
52
52
selectsessionKey
53
53
|>count()
54
54
whereopenSessionCount>0
55
-
letuserJson=GET(userKey)
55
+
letuserJson=get(userKey)
56
56
select (key: userKey, name: userJson[".name"]);
57
57
```
58
58
Response:
@@ -378,6 +378,8 @@ json["$.answer"];
378
378
42
379
379
```
380
380
381
+
Values extracted from JSON are translated to their corresponding RedisQL types, so a JSON integer values becomes a RedisQL integer, a JSON array becomes a RedisQL list etc.
382
+
381
383
## Bindings
382
384
Bind values anytime in the REPL's top most scope using the `let` statement:
0 commit comments