Django データベース モデルのようなクエリで、Google App Engine エンティティ関係にまたがる必要がある状況にいます。ListProperty
次のように、1対多の関係に s を使用しています。
class Foo(db.Model): bars = db.ListProperty(db.Key)
class Bar(db.Model): eggs = db.ListProperty(db.Key)
そして、次のことを行うクエリを実行したいと思います。
# Foo.filter('bars.eggs =', target_egg)
[foo
for egg in eggs if egg == target_egg
for eggs in bar.eggs
for bar in foo.bars
for foo in Foo.all()]
理解は根本的に非効率的です。コメントアウトされた部分のようにクエリを実行したいのですが、属性の属性に対するクエリがGQL 構文で許可されているようには見えません。
SELECT * FROM <kind>
[WHERE <condition> [AND <condition> ...]]
[ORDER BY <property> [ASC | DESC] [, <property> [ASC | DESC] ...]]
[LIMIT [<offset>,]<count>]
[OFFSET <offset>]
<condition> := <property> {< | <= | > | >= | = | != } <value>
<condition> := <property> IN <list>
<condition> := ANCESTOR IS <entity or key>