ISPO SDK
    Preparing search index...

    Interface EntityQuery

    Markdown
    interface EntityQuery {
        cursor?: string | null;
        includeDeleted?: boolean;
        limit?: number;
        orderBy?:
            | { direction?: "asc"
            | "desc"; field: string }
            | { direction?: "asc" | "desc"; field: string }[];
        where?: EntityWhere;
    }
    Index
    cursor?: string | null
    includeDeleted?: boolean
    limit?: number
    orderBy?:
        | { direction?: "asc"
        | "desc"; field: string }
        | { direction?: "asc" | "desc"; field: string }[]
    where?: EntityWhere