- expr
The query expression. A NULL
expression matches everything.
- name
Optionally, the name of the packet to scope the query on. This
will be intersected with scope
arg and is a shorthand way of running
scope = list(name = "name")
- location
Optional vector of locations to pull from. We
might in future expand this to allow wildcards or exceptions.
- fetch_metadata
Logical, indicating if we should pull
metadata immediately before the search. If location
is given,
then we will pass this through to
orderly_location_fetch_metadata()
to filter locations
to update. If pulling many packets in sequence, you will want
to update this option to FALSE
after the first pull, otherwise
it will update the metadata between every packet, which will be
needlessly slow.
- recursive
If non-NULL, a logical, indicating if we should
recursively pull all packets that are referenced by the packets
specified in id
. This might copy a lot of data! If NULL
,
we default to the value given by the the configuration option
require_complete_tree
.
- options
DEPRECATED. Please don't use this any more, and
instead use the arguments location
, allow_remote
and
fetch_metadata
directly.
- root
The path to the root directory, or NULL
(the
default) to search for one from the current working
directory. This function does not require that the directory is
configured for orderly, and can be any outpack
root (see
orderly_init()
for details).