huridocs/uwazi

View on GitHub
app/api/templates.v2/database/schemas/RelationshipsQueryDBO.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ObjectId } from 'mongodb';

export interface MatchQueryDBO {
  templates?: ObjectId[];
  sharedId?: string;
  traverse?: TraverseQueryDBO[];
}

export interface TraverseQueryDBO {
  direction: 'in' | 'out';
  types?: ObjectId[];
  match: MatchQueryDBO[];
}