Member Junction
    Preparing search index...

    The Graph API's standard collection envelope: a data array plus cursor-based paging. Nearly every list endpoint (/me/accounts, /{page}/posts, /{post}/comments) returns this.

    interface FacebookPagedResponse<T> {
        data: T[];
        paging?: {
            cursors?: { after?: string; before?: string };
            next?: string;
            previous?: string;
        };
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    data: T[]
    paging?: {
        cursors?: { after?: string; before?: string };
        next?: string;
        previous?: string;
    }