It appears that some variants of .** jsonpath accessor are undocumented. In
particular undocumented variants are:
.**{level}
.**{lower_level to upper_level}
.**{lower_level to last}
This commit adds missing documentation for them.
+ |
+
+ .**{level}
+
+ .**{lower_level to
+ upper_level}
+
+ .**{lower_level to
+ last}
+
+
+
+ Same as .**, but with filter over nesting
+ level of JSON hierarchy. Levels are specified as integers.
+ Zero level corresponds to current object. This is a
+
PostgreSQL extension of the SQL/JSON
+ standard.
+
+
+
|