vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface QueryRelationshipInfo<T>

    interface QueryRelationshipInfo<T extends object = Record<string, unknown>> {
        done: boolean;
        entityTypeName?: string;
        nextRecordsUrl?: null | string;
        queryLocator?: null | string;
        records: (T & { attributes: SObjectRecordAttributes })[];
        size?: number;
        totalSize: number;
    }

    Type Parameters

    • T extends object = Record<string, unknown>
    Index

    Properties

    done: boolean
    entityTypeName?: string
    nextRecordsUrl?: null | string
    queryLocator?: null | string
    records: (T & { attributes: SObjectRecordAttributes })[]
    size?: number
    totalSize: number