@epilot/entity-client
Version:
JavaScript client library for the epilot Core Entity API
9 lines (8 loc) • 472 B
TypeScript
export declare enum RelationAffinityMode {
/**
* For strong affinity mode on a relation attribute, deleting or creating the parent or the relation linkage will trigger a CASCADE delete or create to the relation entity itself.
* For weak affinity mode on a relation attribute, deleting or creating the parent or the relation linkage will NOT trigger a CASCADE delete or create to the relation entity itself.
*/
WEAK = "weak",
STRONG = "strong"
}