find null in rest Console

I am using the rest console to try to find an object which has one of its attributes (a relation to other table) defined as null. But i can’t find the right syntax.

Table A
|Name|RelationToB|

Where> RelationToB= null --> doesn’t work

Hi Nicolas,

I just tried and I see you can search for related items which are not null using the following query:

RelationToB.objectId != null

But I could not find a way to do the opposite. I will discuss with the dev team and we will look into adding that capability.

Regards,
Mark

Hi Nicolas,

Please, try with query:
Where> RelationToB IS null.

Regards,
Kate.

Worked like a charm, thank you for quick reply guys!