Backendless文档有一个关于查询相关对象的example; 电话簿(父母)有孩子联系(孩子)有孩子地址(孙子)(电话簿 - &gt;联系人 - &gt;地址)。< / p>
您可以使用&#34;为空&#34;到find parent objects with no child object
Contact is null
但是当你试图找到没有孙子对象的子对象时。查询失败,其中包含&#34;无效的where子句。&#34;
Contact.Address is null
答案 0 :(得分:0)
我开发了这个解决方案,它检查孙子对象系统生成的字段是否为空。
Contact.Address.created is null //Contact has no Address child object
Contact.Address.created is not null //Contact has Address child object