Hi,
I’ve got a question regarding the Load Objects function in codeless.
(Assume in a table, there’s a column “test_column” with a 1 to many relation)
In the where query, I can search WHERE test_column = ‘userObjectId’ and it’ll return the entries that have that user object as a relation in the test_column.
However, when I try
“”
WHERE test_column = ‘userObjectId’ AND test_column = ‘user1ObjectId’,
“”
It always returns an empty list.
Do you know how I would be able to get the entries that have both those user objects in the relation?
Reminder: it’s 1 to many so I’m looking for entries that have both objects in the relation column.