Interface RecordLookupNode

The element to lookup records.

interface RecordLookupNode {
    actionConditions?: ActionCondition[];
    assignTotalRecordNumTo?: string;
    connector?: string;
    connectorPoint?: string;
    description?: string;
    faultConnector?: string;
    faultConnectorPoint?: string;
    isDistinct?: boolean;
    label: string;
    limitValue?: string;
    locationX?: number;
    locationY?: number;
    name: string;
    nullIfNoRecords?: boolean;
    object: string;
    outputAssignments?: OutputAssignment[];
    skipValue?: string;
    sortField?: string;
    sortOrder?: "ASC" | "DESC";
}

Hierarchy

  • LookupBaseElement
    • RecordLookupNode

Properties

actionConditions?: ActionCondition[]
assignTotalRecordNumTo?: string

The variable that the total record number should be assigned to.

connector?: string

The normal connector.

connectorPoint?: string
description?: string

The description of the element.

faultConnector?: string

The fault connector.

faultConnectorPoint?: string
isDistinct?: boolean

Check if the result should be distinct.

label: string

The display name.

limitValue?: string

Fetch at most limited value of records.

locationX?: number

The location.

locationY?: number

The location.

name: string

The unique name.

nullIfNoRecords?: boolean
object: string

The name of the object to lookup.

outputAssignments?: OutputAssignment[]

The output assignments.

skipValue?: string

Skip specific number of records.

sortField?: string
sortOrder?: "ASC" | "DESC"