Backstage
    Preparing search index...

    The request type for CatalogApi.getEntitiesByRefs.

    interface GetEntitiesByRefsRequest {
        entityRefs: string[];
        fields?: EntityFieldsQuery;
        filter?: EntityFilterQuery;
        query?: FilterPredicate;
    }
    Index

    Properties

    entityRefs: string[]

    The list of entity refs to fetch.

    The returned list of entities will be in the same order as the refs, and undefined will be returned in those positions that were not found.

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

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

    If given, return only entities that match the given predicate query.

    Supports operators like $all, $any, $not, $exists, $in, $contains, and $hasPrefix. When both filter and query are provided, they are combined with $all.