Question about find with relationship?

Hi @Minh_Tuan_Vu ,

users is a relation column, so when you want to filter by this column, you should specify by which column of table that users pointing to you’d like to filter.
E.g. type = 'Solo' AND users.active = true
or
type = 'Solo' AND users.objectId LIKE '%ABCD-4242%'

Regards,
Stanislaw