Interface SeaTableV1NodeParameters

Source
interface SeaTableV1NodeParameters {
    columnsUi?: {
        columnValues: {
            columnName?: string;
            columnValue?: string;
        }[];
    };
    fieldsToSend?: "autoMapInputData"
    | "defineBelow";
    filters?: { view_name?: string };
    inputsToIgnore?: string;
    limit?: number;
    operation?:
        | "create"
        | "get"
        | "getAll"
        | "update"
        | "delete";
    options?: {
        convert_link_id?: boolean;
        direction?: "asc"
        | "desc";
        order_by?: string;
    };
    resource?: "row";
    returnAll?: boolean;
    rowId?: string;
    tableId?: string;
    tableName?: string;
}

Properties§

Source§

readonly columnsUi?: {
    columnValues: {
        columnName?: string;
        columnValue?: string;
    }[];
}

Add destination column with its value Default: {} Type options: {"multipleValueButtonText":"Add Column to Send","multipleValues":true}

Source§

readonly fieldsToSend?: "autoMapInputData" | "defineBelow"

Whether to insert the input data this node receives in the new row Default: "defineBelow"

Source§

readonly filters?: { view_name?: string }

Default: {}

Source§

readonly inputsToIgnore?: string

List of input properties to avoid sending, separated by commas. Leave empty to send all properties.

Source§

readonly limit?: number

Max number of results to return Default: 50 Type options: {"minValue":1}

Source§

readonly operation?: "create" | "get" | "getAll" | "update" | "delete"

The operation being performed Default: "create"

Source§

readonly options?: {
    convert_link_id?: boolean;
    direction?: "asc" | "desc";
    order_by?: string;
}

Default: {}

Source§

readonly resource?: "row"

Default: "row"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit Default: true

Source§

readonly rowId?: string

Source§

readonly tableId?: string

The name of SeaTable table to access. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getTableIds"}

Source§

readonly tableName?: string

The name of SeaTable table to access. Choose from the list, or specify the name using an expression. Type options: {"loadOptionsMethod":"getTableNames"}