interface BubbleNodeParameters {
jsonParameters?: boolean;
limit?: number;
objectId?: string;
operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete";
options?: {
filters?: {
filter: {
constraint_type?: | "contains"
| "empty"
| "equals"
| "not equal"
| "is_empty"
| "is_not_empty"
| "text contains"
| "not text contains"
| "greater than"
| "less than"
| "in"
| "not in"
| "not contains"
| "not empty"
| "geographic_search";
key?: string;
value?: string;
}[];
};
filtersJson?: string;
sort?: {
sortValue: {
descending?: boolean;
geo_reference?: string;
sort_field?: string;
};
};
};
properties?: {
property: { key?: string; value?: string }[];
};
resource?: "object";
returnAll?: boolean;
typeName?: string;
}
Properties§
§
§
§
§
§
§
§
§
readonly json Parameters?: boolean
§readonly limit?: number
readonly object Id?: string
ID of the object to retrieve
readonly operation?: "create" | "get" | "getAll" | "update" | "delete"
Default: "get"
readonly options?: { ... }
Default: {}
readonly properties?: { ... }
Default: {} Type options: {"multipleValues":true}
readonly resource?: "object"
Default: "object"
readonly return All?: boolean
Whether to return all results or only up to a given limit
readonly type Name?: string
Name of data type of the object to create
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}