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

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

Type Parameters