interface SupabaseNodeParameters {
dataToSend?: "autoMapInputData" | "defineBelow";
fieldsUi?: {
fieldValues: {
fieldId?: string;
fieldValue?: string;
}[];
};
filters?: | {
conditions: {
condition?: | "is"
| "gte"
| "gt"
| "lte"
| "lt"
| "eq"
| "like"
| "neq"
| "fullText"
| "ilike";
keyName?: string;
keyValue?: string;
searchFunction?: "fts"
| "plfts"
| "phfts"
| "wfts";
}[];
}
| {
conditions: { keyName?: string; keyValue?: string }[];
};
filterString?: string;
filterType?: "string"
| "none"
| "manual";
inputsToIgnore?: string;
limit?: number;
matchType?: "anyFilter" | "allFilters";
operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete";
resource?: "row";
returnAll?: boolean;
schema?: string;
tableId?: string;
useCustomSchema?: boolean;
}Properties§
readonly data To Send?: "autoMapInputData" | "defineBelow"readonly fields Ui?: { ... }Default: {} Type options: {"multipleValueButtonText":"Add Field to Send","multipleValues":true}
readonly filters?:
| {
conditions: {
condition?: | "is"
| "gte"
| "gt"
| "lte"
| "lt"
| "eq"
| "like"
| "neq"
| "fullText"
| "ilike";
keyName?: string;
keyValue?: string;
searchFunction?: "fts"
| "plfts"
| "phfts"
| "wfts";
}[];
}
| {
conditions: { keyName?: string; keyValue?: string }[];
}Filter to decide which rows get updated Default: {} Type options: {"multipleValues":true}
readonly filter String?: string§readonly filter Type?: "string" | "none" | "manual"Default: "manual"
readonly inputs To Ignore?: stringList of input properties to avoid sending, separated by commas. Leave empty to send all properties.
readonly limit?: numberMax number of results to return Default: 50 Type options: {"minValue":1}
readonly match Type?: "anyFilter" | "allFilters"Default: "anyFilter"
readonly operation?: "create" | "get" | "getAll" | "update" | "delete"Default: "create"
readonly resource?: "row"Default: "row"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly schema?: stringName of database schema to use for table Default: "public"
readonly table Id?: stringChoose from the list, or specify an ID using an expression Type options: {"loadOptionsDependsOn":["useCustomSchema","schema"],"loadOptionsMethod":"getTables"}
readonly use Custom Schema?: booleanWhether to use a database schema different from the default "public" schema (requires schema exposure in the Supabase API)
Default: "defineBelow"