Learn R Programming

jqr (version 1.0.0)

jq: Execute a query with jq

Description

jq is meant to work with the high level interface in this package. jq also provides access to the low level interface in which you can use jq query strings just as you would on the command line. Output gets class of json, and pretty prints to the console for easier viewing. jqr doesn't do pretty printing.

Usage

jq(x, ...)

# S3 method for jqr jq(x, ...)

# S3 method for character jq(x, ..., flags = jq_flags())

Arguments

x

json object or character string with json data. this can be one or more valid json objects

...

character specification of jq query. Each element in code... will be combined with " | ", which is convenient for long queries.

flags

See Also

peek

Examples

Run this code
# NOT RUN {
'{"a": 7}' %>%  do(.a + 1)
'[8,3,null,6]' %>% sortj

x <- '[{"message": "hello", "name": "jenn"},
  {"message": "world", "name": "beth"}]'
jq(index(x))

jq('{"a": 7, "b": 4}', 'keys')
jq('[8,3,null,6]', 'sort')

# many json inputs
jq("[123, 456] [77, 88, 99]", ".[]")
# }

Run the code above in your browser using DataLab