@infrasoftbe/vnv-sdk
    Preparing search index...

    Interface RelationLayer

    interface RelationLayer {
        create(relation: Partial): Promise<IRelation>;
        delete(): Promise<boolean>;
        get<T extends any[] = null>(): Promise<
            T extends null ? IRelation : IRelation[],
        >;
        update(relation: IRelation): Promise<IRelation>;
    }
    Index

    Methods