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§

Source§

readonly jsonParameters?: boolean

Source§

readonly limit?: number

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

Source§

readonly objectId?: string

ID of the object to retrieve

Source§

readonly operation?: "create" | "get" | "getAll" | "update" | "delete"

Default: "get"

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;
        };
    };
}

Default: {}

Source§

readonly properties?: { property: { key?: string; value?: string }[] }

Default: {} Type options: {"multipleValues":true}

Source§

readonly resource?: "object"

Default: "object"

Source§

readonly returnAll?: boolean

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

Source§

readonly typeName?: string

Name of data type of the object to create