@audiotool/nexus - v0.0.12
    Preparing search index...

    Type Alias ReferenceQuery<T>

    Internal type used for pointingTo and pointedToBy.

    Because we don't know which entities point to or are pointed to by which entities, the return type doesn't change.

    type ReferenceQuery<T extends EntityTypeKey> = {
        entities(...ids: string[]): EntityQuery<T>;
        entityOfType<Q extends (keyof EntityTypes)[]>(...types: Q): EntityQuery<T>;
        locations(...loc: NexusLocation[]): EntityQuery<T>;
    }

    Type Parameters

    Index

    Methods