私はmongoDBを次のように設定しています:
fieldName: {
"1": {
client: "name-here",
subfield: "more-junk-here"
},
"2": {
client: "another-client-name-here",
subfield: "more-data"
},
"3": {
client: "client-num-3",
subfield: "i-like-turkey-sandwiches"
}
}
位置3にあることを知らずに、ドキュメント全体を検索せずに、「i-like-turkey-sandwiches」をクエリするにはどうすればよいですか。私はこれを書き始めましたが、検索の方法に完全に困惑しています...
$cursor = $collection->findOne(array('fieldName' => 'i-like-turkey-sandwiches));