Member Junction
    Preparing search index...

    Interface RecordChangeMetadataSource

    The two metadata lookups this projector needs, and nothing else.

    Narrower than IMetadataProvider on purpose: both ProviderBase (which passes this) and Metadata (which the GraphQL resolvers fall back to) satisfy this, while only the first satisfies the full provider interface. Asking for exactly what is used keeps the resolver half from having to invent a provider it does not have.

    interface RecordChangeMetadataSource {
        Entities: EntityInfo[];
        EntityByID(entityID: string): EntityInfo;
    }
    Index

    Properties

    Methods

    Properties

    Entities: EntityInfo[]

    Methods