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§
Source§readonly 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;
};
};
}
readonly 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;
};
};
}
Default: {}
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}