Dudaev Alexander
Results
2
comments of
Dudaev Alexander
> ``` > class Topping { > @Serialize() public type: string; > } > > class Book { > @Serialize() public name: string; > @Serialize() public topping: Topping[]; > }...
I was able to filter by selected tags using this construction: ```typescript .orWhere((groupFactory) => selectedTags.reduce( (gf, tag) => gf.orWhere( g => g.where('tags', 'LIKE', `%"${tag}"%`) ), groupFactory) ) ```