QuickBase JS SDK v2 - v2.2.2
    Preparing search index...

    Interface CreateRelationshipResponse

    interface CreateRelationshipResponse {
        childTableId: string;
        foreignKeyField?: {
            id?: number;
            label?: string;
            type?: string;
            [key: string]: unknown;
        };
        id: number;
        isCrossApp: boolean;
        lookupFields?: {
            id?: number;
            label?: string;
            type?: string;
            [key: string]: unknown;
        }[];
        parentTableId: string;
        summaryFields?: {
            id?: number;
            label?: string;
            type?: string;
            [key: string]: unknown;
        }[];
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    childTableId: string

    The child table id of the relationship.

    foreignKeyField?: {
        id?: number;
        label?: string;
        type?: string;
        [key: string]: unknown;
    }

    The foreign key field information.

    Type Declaration

    • [key: string]: unknown
    • Optionalid?: number

      Field id.

    • Optionallabel?: string

      Field label.

    • Optionaltype?: string

      Field type.

    id: number

    The relationship id (foreign key field id).

    isCrossApp: boolean

    Whether this is a cross-app relationship.

    lookupFields?: {
        id?: number;
        label?: string;
        type?: string;
        [key: string]: unknown;
    }[]

    The lookup fields array.

    Type Declaration

    • [key: string]: unknown
    • Optionalid?: number

      Field id.

    • Optionallabel?: string

      Field label.

    • Optionaltype?: string

      Field type.

    parentTableId: string

    The parent table id of the relationship.

    summaryFields?: {
        id?: number;
        label?: string;
        type?: string;
        [key: string]: unknown;
    }[]

    The summary fields array.

    Type Declaration

    • [key: string]: unknown
    • Optionalid?: number

      Field id.

    • Optionallabel?: string

      Field label.

    • Optionaltype?: string

      Field type.