Type Alias EntityTriggerMutationInfo<TFields, TID, TViewerContext, TEntity, TSelectedFields>

EntityTriggerMutationInfo:
    | { type: CREATE }
    | {
        cascadingDeleteCause: EntityCascadingDeletionInfo | null;
        previousValue: TEntity;
        type: UPDATE;
    }
    | {
        cascadingDeleteCause: EntityCascadingDeletionInfo
        | null;
        type: DELETE;
    }

Type Parameters