vlocode-project - v1.41.2
    Preparing search index...

    Interface QueryRelationshipInfo<T>

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

    Type Parameters

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

    Properties

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