我使用 pod 创建项目,我想根据它们的关系过滤 pod。
例如,我有 2 个关系可供选择:“好”或“坏”
$pods_name = "attitude";
//get the specific pod object:
$thePod = new Pod($pods_name);
$thePod->findRecords(-1, "attitude.mood = Good");
//mood is the label of the relationship you can choose from (has
//the options between good or bad)
这样做的问题是它会返回 Good 和 Bad 的项目。我看不到它们在数据库中是如何链接的,是否有更具体的方法可以调用它来查找“Good”下列出的唯一项目的记录?