json-api-nestjs
Version:
JsonApi Plugin for NestJs
6 lines (5 loc) • 424 B
TypeScript
import { EntityRelation } from '../../../../utils/nestjs-shared';
import { ObjectLiteral } from '../../../../types';
import { PatchRelationshipData } from '../../../mixin/zod';
import { MicroOrmService } from '../../service';
export declare function patchRelationship<E extends ObjectLiteral, Rel extends EntityRelation<E>>(this: MicroOrmService<E>, id: number | string, rel: Rel, input: PatchRelationshipData): Promise<E>;