interface DataTableNodeParameters {
dataTableId?: { mode: "id" | "list"; value: string };
filters?: {
conditions: {
condition?: string;
keyName?: string;
keyValue?: string;
}[];
};
limit?: number;
matchType?: "anyCondition"
| "allConditions";
operation?:
| "get"
| "update"
| "upsert"
| "insert"
| "deleteRows"
| "rowExists"
| "rowNotExists";
options?: | { dryRun?: boolean }
| { optimizeBulk?: boolean };
resource?: "row";
returnAll?: boolean;
}Properties§
Source§readonly filters?: {
conditions: {
condition?: string;
keyName?: string;
keyValue?: string;
}[];
}
readonly filters?: {
conditions: {
condition?: string;
keyName?: string;
keyValue?: string;
}[];
}
Filter to decide which rows get Default: {} Type options: {"multipleValues":true,"minRequiredFields":0}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1}
Default: {"mode":"list","value":""}