(compile-query query)
Compiles a JQ query string into a JsonQuery object.
Compiles a JQ query string into a JsonQuery object.
(execute data query)
Given a JSON data string (1) and a JQ query string (2) returns a JSON string result of (2) applied on (1).
Given a JSON data string (1) and a JQ query string (2) returns a JSON string result of (2) applied on (1).
(json-node-processor query)
Given a JQ query string (2) compiles it and returns a function that given a JsonNode object (2) will return a JSON string with (1) applied on (2).
Given a JQ query string (2) compiles it and returns a function that given a JsonNode object (2) will return a JSON string with (1) applied on (2).
(processor query)
Given a JQ query string (2) compiles it and returns a function that given a JSON string (2) will return a JSON string with (1) applied on (2).
Given a JQ query string (2) compiles it and returns a function that given a JSON string (2) will return a JSON string with (1) applied on (2).
(query-data data query)
Reads data JSON string into a JsonNode and passes to the query executor.
Reads data JSON string into a JsonNode and passes to the query executor.
(query-json-node data query)
Given a JSON data string and a JsonQuery object applies the query on the JSON data string and return the resulting JSON string.
Given a JSON data string and a JsonQuery object applies the query on the JSON data string and return the resulting JSON string.
Scope that contains all the available Builtin functions.
Scope that contains all the available Builtin functions.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close