@levo-so/client
Version:
<img alt="Levo" src="https://static.levocdn.com/png/Levo-Logo.png" width="50" height="50">
11 lines (10 loc) • 379 B
TypeScript
export type LemaCollectionRelationship = 'o2m' | 'm2o' | 'o2o' | 'm2m';
export type LemaRelationOnDelete = 'CASCADE' | 'SET_NULL' | 'RESTRICT';
export type LemaRelation = {
relationship: LemaCollectionRelationship | string;
related_field: string;
related_collection_key: string;
field: string;
collection_key: string;
on_delete?: LemaRelationOnDelete;
};