Interface Match
hasOwnOnly?: boolean;
includePropertyValue?: boolean;
maxDepth?: number;
maxResults?: number;
maxVisits?: number;
pathPrefix?: PropertyPath;
stopAt?: PropertyPath;
}
Hierarchy
- MatchCommon
- Match (View Summary)
Index
Properties
OptionalhasOwnOnly
When true, every path segment must be an own property of the candidate value reached at that depth.
OptionalincludePropertyValue
Whether matching entries / values also include the property value resolved from candidate data.
OptionalmaxDepth
Maximum number of property-key segments traversed beneath a selected prefix, or beneath the root when no prefix
is supplied. A value of 0 selects only the prefix itself when the iterator supports a prefix.
OptionalmaxResults
Maximum number of paths or entries yielded by one traversal. Reaching this limit truncates normally.
OptionalmaxVisits
Maximum number of object properties or trie nodes processed during iterative traversal. Exceeding this limit throws.
OptionalpathPrefix
Absolute stored path selecting the trie subtree where traversal begins.
OptionalstopAt
Absolute stored path whose entry is included while every descendant beneath it is pruned.
Options for matching entry and mapped-value iteration.