ReadonlycallOptional ReadonlycallFor a string callName, match it literally instead of as a regex. For a RegExp, add ^ and $ anchors. Arrays always match exactly, regardless of this flag.
Optional ReadonlycallOnly keep calls that resolve to (or are explicitly qualified with) this package, e.g. bar to find bar::foo / foo() after library(bar).
Optional ReadonlycallCall targets the function may have. This defaults to CallTargets#Any. Request this specifically to gain all call targets we can resolve.
Optional ReadonlyfileFilter that, when set, a node's file attribute must match to be considered
Optional ReadonlyignoreShould we ignore default values for parameters in the results?
Optional ReadonlyincludeConsider a case like f <- function_of_interest, do you want uses of f to be included in the results?
Optional Readonlykindkind may be a step or anything that you attach to the call, this can be used to group calls together (e.g., linking ggplot to visualize). Defaults to .
Optional ReadonlylinkOptional Readonlysubkindsubkinds are used to uniquely identify the respective call type when grouping the output (e.g., the normalized name, linking ggplot to plot). Defaults to .
Readonlytypeused to select the query type :)
The function name to match: a string (interpreted as a regex unless callNameExact is set), a RegExp, or an array of strings (always matched exactly).