| docdb_query {nodbi} | R Documentation | 
Get documents or parts with filtering query
Description
Complements the databases' native query and filtering functions
by using jqr::jqr().
If query = "{}" and neither fields
nor listfields is specified, runs docdb_get().
Usage
docdb_query(src, key, query, ...)
Arguments
| src | Source object, result of call to any of functions
 | 
| key | (character) The name of the container in the
database backend (corresponds to  | 
| query | (character) A JSON query string, see examples.
Can use comparisons / tests ( | 
| ... | Optional parameters: 
 | 
Value
Data frame with requested documents, may have nested
lists in columns; NULL if no documents could be found.
If listfields is specified: a vector of all field names
in dot path notation.
Note
A dot in query or fields is interpreted as a dot path,
pointing to a field nested within another, e.g. friends.id in
the example.
Examples
## Not run: 
src <- src_sqlite()
docdb_create(src, "myKey", mtcars)
docdb_create(src, "myKey", contacts)
docdb_create(src, "myKey", mapdata)
docdb_query(src, "myKey", query = '{"mpg":21}')
docdb_query(src, "myKey", query = '{"mpg":21, "gear": {"$lte": 4}}')
docdb_query(src, "myKey", query = '{"mpg":21}', fields = '{"_id":0, "mpg":1, "cyl":1}')
docdb_query(src, "myKey", query = '{"_id": {"$regex": "^.+0.*$"}}', fields = '{"gear": 1}')
docdb_query(src, "myKey", query = '{"$and": [{"mpg": {"$lte": 18}}, {"gear": {"$gt": 3}}]}')
docdb_query(src, "myKey", query = '{}', fields = '{"_id":0, "mpg":1, "cyl":1}')
docdb_query(src, "myKey", query = '{"$and": [{"age": {"$gt": 21}},
 {"friends.name": {"$regex": "^B[a-z]{3,9}.*"}}]}')
docdb_query(src, "myKey", query = '{"$or": [{"rows.elements.status": "OK"}, {"$and": [
 {"_id": "5cd6785325ce3a94dfc54096"}, {"friends.name": {"$regex": "^B[a-z]{3,90}.*"}}]}]}')
docdb_query(src, "myKey", query = '{"$and": [{"_id": "5cd6785325ce3a94dfc54096"},
 {"friends.name": {"$regex": "^B[a-z]{3,90}.*"}}]}')
docdb_query(src, "myKey", query = '{"origin_addresses": {"$in": ["Santa Barbara, CA, USA",
 "New York, NY, USA"]}}', fields = '{"age": 1, "friends.id": 1, "_id": 0,
 "rows.elements.status": 1}')
docdb_query(src, "myKey", query = '{"rows.elements.status": "OK"}', listfields = TRUE)
## End(Not run)