import { Filterable } from './filterable.interface'; import { WithDeleted } from './with-deleted.interface'; import { WithResolveInfo } from './with-resolve-info.interface'; export interface FindRelationOptions extends Filterable, WithResolveInfo, WithDeleted { /** * Relation is looked ahead */ lookedAhead?: boolean; }