我想查询“类别”字段中至少有一个带有特定“id”的链接的“商店”类型的所有条目,我该如何实现?
我试过了:
$query = new \Contentful\Delivery\Query;
$query->setContentType('store')->where('fields.category.pt-BR', $id );
$page = $client->getEntries($query);
“商店”内的链接结构是这样的:
["categories"]=>
object(stdClass)#49 (1) {
["pt-BR"]=>
array(1) {
[0]=>
object(stdClass)#52 (1) {
["sys"]=>
object(stdClass)#55 (3) {
["type"]=>
string(4) "Link"
["linkType"]=>
string(5) "Entry"
["id"]=>
string(22) "5LuXxFE2eQoqOY0yQO2iQ4"
}
}
}
}
“类别”本身看起来像:
["category"]=>
object(stdClass)#49 (1) {
["pt-BR"]=>
array(1) {
[0]=>
object(stdClass)#46 (1) {
["sys"]=>
object(stdClass)#47 (3) {
["type"]=>
string(4) "Link"
["linkType"]=>
string(5) "Entry"
["id"]=>
string(22) "5LuXxFE2eQoqOY0yQO2iQ4"
}
}
}
}
但是没有用。