Sanity Library Reference Docs
    Preparing search index...

    Interface InstallationsOptions<Include>

    Options for listing an organization's installations.

    interface InstallationsOptions<
        Include extends InstallationInclude = InstallationInclude,
    > {
        cursor?: string;
        include?: Include[];
        limit?: number | "none";
        organizationId: string;
    }

    Type Parameters

    Index

    Properties

    cursor?: string

    Cursor from a previous response's nextCursor

    include?: Include[]
    limit?: number | "none"

    Page size (1-100, default 50), or 'none' to disable pagination

    organizationId: string