Member Junction
    Preparing search index...

    Access system metadata and get entity objects to do CRUD operations on entities.

    interface SimpleMetadata {
        Entities: EntityInfo[];
        GetEntityObject(
            entityName: string,
            contextUser?: UserInfo,
        ): Promise<BaseEntity<unknown>>;
    }
    Index

    Properties

    Methods

    Properties

    Entities: EntityInfo[]

    Array of entity metadata objects that describe the entities in the system.

    Methods

    • Retrieves a single BaseEntity derived class for the specified entity

      Parameters

      • entityName: string
      • OptionalcontextUser: UserInfo

      Returns Promise<BaseEntity<unknown>>