Interface BubbleNodeParameters

Source
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 jsonParameters?: boolean
§readonly limit?: number

Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}

§readonly objectId?: 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 returnAll?: boolean

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

§readonly typeName?: string

Name of data type of the object to create