简体   繁体   中英

Non unique query with Freebase MQL read google api

It seems I am only able to do unique queries (ie including an entity id in the query) with the new freebase MQL read api:

The following searches on id and type:

https://www.googleapis.com/freebase/v1/mqlread?query={"name":null,"id":"/en/bob_dylan","type":"/people/person"}

and successfully returns:

{
"result": {
"type": "/people/person", 
"id": "/en/bob_dylan", 
"name": "Bob Dylan"
}
}

The following searches with type only:

https://www.googleapis.com/freebase/v1/mqlread?query={"name":null,"type":"/people/person"}

or

https://www.googleapis.com/freebase/v1/mqlread?query={"name":[],"type":"/people/person"}

and returns the following error:

{
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "badRequest",
    "message": "Unique query may have at most one result. Got 100"
   }
  ],
  "code": 400,
  "message": "Unique query may have at most one result. Got 100"
 }
}

I expected it to return a list of people's names

您必须在[]中包装查询,如下例所示:

https://www.googleapis.com/freebase/v1/mqlread?query=[{"name":[],"type":"/people/person"}]

I too faced a similar problem recently. The best way to make sure you get a single result set is to use "limit:1" parameter in your mql query. for example:

https://www.googleapis.com/freebase/v1/mqlread?query={"type":[],"name":"india","limit":1}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM