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

    Interface QueryResponse<T>

    Query rest API response

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

    Type Parameters

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

    Properties

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