interface FlowrSearchGetFilter {
    column?: number;
    id?: NodeId;
    line?: number;
    name?: string;
    nameIsRegex?: boolean;
}

Hierarchy

  • Record<string, unknown>
    • FlowrSearchGetFilter

Hierarchy-Diagram

UML class diagram of FlowrSearchGetFilter

Properties

column?: number

The node must be in the given column.

id?: NodeId

The node must have the given id.

line?: number

The node must be in the given line.

name?: string

The node must have the given name. To treat this name as a regular expression, set FlowrSearchGetFilter#nameIsRegex to true.

nameIsRegex?: boolean

Only useful in combination with name. If true, the name is treated as a regular expression.