如何根据用户在Google Developer Console中的属性类型用户使用GQL中的电子邮件进行过滤?

时间:2015-10-27 14:32:13

标签: google-app-engine gql developer-console

一个名为Account的实体具有User type属性,如下所示:

帐户
AccountName String
所有者用户
....

在App Engine数据存储查看器中,我可以使用以下查询通过电子邮件进行过滤:

SELECT * FROM Account where owner = User('example@gmail.com')

在新的Google Developer Console数据存储区查询中使用相同的查询,我收到以下错误: "未知功能"用户"。"

属性所有者在Developer Console中如下所示:

{"属性" {" AUTH_DOMAIN" {" stringValue的":" gmail.com""索引&# 34;:假}"电子邮件" {" stringValue的":" example@gmail.com","索引":假}, " USER_ID" {" stringValue的":" 5555555555555555555""索引":假}}}

User类型的所有者实体未编入索引。 我可以在新的Google Developer Console中使用的等效GQL查询是什么?

enter image description here

enter image description here

0 个答案:

没有答案