lua-jsonpath icon indicating copy to clipboard operation
lua-jsonpath copied to clipboard

Query Lua data structures with JsonPath expressions. Robust and safe JsonPath engine for Lua.

Results 3 lua-jsonpath issues
Sort by recently updated
recently updated
newest added

E.g: data.sotre['soccer-shoes']

A filtering expression like `$[?(@.node1.node2)]` will not find node2 because the cycle step is 2. If we rewrite the expression for `$[?(@.node1.node2.node2)]`, node2 will be found.

Minor fix to avoid warnings ``` [lua] _G write guard:12: __newindex(): writing a global Lua variable ('match_path') which may lead to race conditions between concurrent requests, so prefer the use...