Field with the link to the TApplication item.

Type parameters

Hierarchy

  • StaticApplicationField<T, P, S>
    • ApplicationField

Properties

Readonly app

app: Application<T, P, S> & T extends UserProfileItemData ? ApplicationUserProfile<T, P> : object & T extends ProjectItemData ? ApplicationProject<T, P> : object & T extends ProjectPlanElementItemData ? ApplicationProjectPlanElement<T, P> : object & T extends ItemDataWithBatcher ? ApplicationWithBatcher<T, P> : object & P extends ItemData ? ApplicationWithParams<P> : object

Description of the field type collection.

Readonly data

Management of data in a field.

Methods

fetchAll

  • The method is used to request all associated objects.

    If a field stores multiple links to app items, you can request their full data at once:

    const items = await Context.fields.app. fetchAll();
    

    Returns Promise<ApplicationItem<T, P>[]>