Backstage
    Preparing search index...

    The request type for CatalogClient.getEntities.

    interface GetEntitiesRequest {
        after?: string;
        fields?: EntityFieldsQuery;
        filter?: EntityFilterQuery;
        limit?: number;
        offset?: number;
        order?: EntityOrderQuery;
    }
    Index

    Properties

    after?: string

    If given, skips over all items before that cursor as returned by a previous request.

    If given, return only the parts of each entity that match the field declarations.

    If given, return only entities that match the given filter.

    limit?: number

    If given, returns at most N items from the result set.

    offset?: number

    If given, skips over the first N items in the result set.

    If given, order the result set by those directives.