Interface BaserowNodeParameters

Source
interface BaserowNodeParameters {
    additionalOptions?: {
        filters?: {
            fields: {
                field?: string;
                operator?:
                    | "boolean"
                    | "contains"
                    | "contains_not"
                    | "date_after"
                    | "date_before"
                    | "date_equal"
                    | "date_equals_month"
                    | "date_equals_today"
                    | "date_equals_year"
                    | "date_not_equal"
                    | "equal"
                    | "filename_contains"
                    | "higher_than"
                    | "empty"
                    | "not_empty"
                    | "link_row_has_not"
                    | "link_row_has"
                    | "lower_than"
                    | "not_equal"
                    | "single_select_equal"
                    | "single_select_not_equal";
                value?: string;
            }[];
        };
        filterType?: "AND"
        | "OR";
        order?: {
            fields: { direction?: "" | "-"; field?: string }[];
        };
        search?: string;
    };
    databaseId?: string;
    dataToSend?: "autoMapInputData"
    | "defineBelow";
    fieldsUi?: {
        fieldValues: {
            fieldId?: string;
            fieldValue?: string;
        }[];
    };
    inputsToIgnore?: string;
    limit?: number;
    operation?: | "create"
    | "get"
    | "getAll"
    | "update"
    | "delete";
    resource?: "row";
    returnAll?: boolean;
    rowId?: string;
    tableId?: string;
}

Properties§

Source§

readonly additionalOptions?: {
    filters?: {
        fields: {
            field?: string;
            operator?:
                | "boolean"
                | "contains"
                | "contains_not"
                | "date_after"
                | "date_before"
                | "date_equal"
                | "date_equals_month"
                | "date_equals_today"
                | "date_equals_year"
                | "date_not_equal"
                | "equal"
                | "filename_contains"
                | "higher_than"
                | "empty"
                | "not_empty"
                | "link_row_has_not"
                | "link_row_has"
                | "lower_than"
                | "not_equal"
                | "single_select_equal"
                | "single_select_not_equal";
            value?: string;
        }[];
    };
    filterType?: "AND"
    | "OR";
    order?: {
        fields: { direction?: "" | "-"; field?: string }[];
    };
    search?: string;
}

Default: {}

Source§

readonly databaseId?: string

Database to operate on. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getDatabaseIds"}

Source§

readonly dataToSend?: "autoMapInputData" | "defineBelow"

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

Source§

readonly fieldsUi?: { fieldValues: { fieldId?: string; fieldValue?: string }[] }

Default: {} Type options: {"multipleValueButtonText":"Add Field to Send","multipleValues":true}

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,"maxValue":100}

Source§

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

Default: "getAll"

Source§

readonly resource?: "row"

Default: "row"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly rowId?: string

ID of the row to return

Source§

readonly tableId?: string

Table to operate on. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsDependsOn":["databaseId"],"loadOptionsMethod":"getTableIds"}