vladmelnyk

Results 6 comments of vladmelnyk

> I copied Artem's sample + application properties directly into my intellij. And it works with just one exception. Instead of FOO I receive a byte array encoded into a...

is there a hackish solution we can use until you release a proper one? @doug-martin

oh, sorry @smolinari, for that particular example that I submitted - it would be this error: `unknown operator \"title\""` Ultimately, it doesn't really matter on what field I apply filter...

@doug-martin dto: `@ObjectType('TrainingBookOrder') @FilterableRelation('training_event', () => TrainingEventDTO, { disableRemove: false, disableUpdate: false, disableRead: false, allowFiltering: true }) export class TrainingBookOrderDTO implements ITrainingBookOrder { @FilterableField(id => ID) id: number; @Field(() =>...

I tried this in dto `@FilterableRelation('training_event_custom_name', () => TrainingEventDTO, { disableRemove: false, disableUpdate: false, disableRead: false, allowFiltering: true, relationName: 'training_event' })` query: `query { trainingBookOrders( paging: { first: 50 }...