summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/json/combination/unwrapped.yql
blob: cdaa2be37bd1446b1190c85972d5162cc1328f71 (plain) (blame)
1
2
3
4
5
6
$json = Unwrap(CAST(@@{"x": 1}@@ as Json));

SELECT
    JSON_EXISTS($json, "strict $.x"),
    JSON_VALUE($json, "strict $.x"),
    JSON_QUERY($json, "strict $");