diff --git a/data-explorer/kusto/query/parse-json-function.md b/data-explorer/kusto/query/parse-json-function.md index dfe9c68e25..e4f4a13c19 100644 --- a/data-explorer/kusto/query/parse-json-function.md +++ b/data-explorer/kusto/query/parse-json-function.md @@ -75,3 +75,7 @@ because its declared type is `dynamic`. let d='{"a":123, "b":"{\\"c\\":456}"}'; print d_b_c=parse_json(tostring(parse_json(d).b)).c ``` + +## Related content + +* [parse operator](parse-operator.md) \ No newline at end of file diff --git a/data-explorer/kusto/query/parse-operator.md b/data-explorer/kusto/query/parse-operator.md index 018bed4982..be82627fbc 100644 --- a/data-explorer/kusto/query/parse-operator.md +++ b/data-explorer/kusto/query/parse-operator.md @@ -309,6 +309,7 @@ Traces ## Related content +* [parse-json function](parse-json-function.md) * [extract function](extract-function.md) * [extract-all function](extract-all-function.md) * [extract-json function](extract-json-function.md)