Member Junction
    Preparing search index...

    Result of a list operation

    interface ListResult {
        HasMore: boolean;
        NextCursor?: string;
        Records: ExternalRecord[];
        TotalCount?: number;
    }
    Index

    Properties

    HasMore: boolean

    Whether more pages exist

    NextCursor?: string

    Opaque cursor for fetching the next page

    Records: ExternalRecord[]

    Records in this page

    TotalCount?: number

    Total number of matching records, if known