gjson icon indicating copy to clipboard operation
gjson copied to clipboard

Any ideas how to do a full-text query over all fields?

Open Robert-M-Muench opened this issue 2 years ago • 1 comments

I have a bigger and more complex JSON object and want to search for a substring in every field, array, etc.

Is such a query possible?

Robert-M-Muench avatar May 29 '22 13:05 Robert-M-Muench

*.#(*=="1")# works finding any field that is 1

*.#(test%"00*")# works finding substrings in the field test

*.#(*%"00*")# finding the substring in all fields doesn't work.

Robert-M-Muench avatar May 29 '22 13:05 Robert-M-Muench