I have a user object and in the object blockList field which is list of BackendlessUsers.
How can I use this query “AND ownerId NOT IN (‘id1’, ‘id2’,…)” in my case
I need something like this
“AND ownerId NOT IN (blockList.everyObject.ownerId)”(pseudo code)
Could you please write the example of where clause which does not work and test it in the admin console? There you can find a switcher to SQL right to search input and type SQL expressions like yours.
Check that there are no null’s in block_list field, it may cause code not working.
I have the similar question.
Have:
class A {
List<BackendlessUser> users;
}
For example, how to query all A objects with where “users.objectId = 17E0F4A1-DFCD-128B-FF08-3C040B792C00” ?