Tagged Questions

5
votes
1answer
382 views

Freebase MQL filter where value != null?

I'm trying to write an MQL query that filters out null values. The query I have now (can be executed using the MQL Query Editor): [ { "/common/topic/image" : [ { "id" : null ...
4
votes
2answers
97 views

Freebase query - exclusion of certain values

I want to retrieve name of all movies and their genre. It's ok if information about genre is empty, but if genre is known I want to retrieve it. "/film/film/genre": ...
4
votes
1answer
1k views

Freebase MQL query for topic summary and image?

I'm trying to write an MQL query to be executed using Freebase API's. I would like to retrieve the topic summary and the image for the topic. I have been able to work out the below query which will ...
2
votes
1answer
246 views

Freebase: Format search result to list all properties of object of unknown type(s)

I'm trying to write a MQL query to format a search result in freebase (the "output" parameter in the search API). I essentially want to find the (simple) values of all the properties of a given search ...
1
vote
2answers
60 views

How to express current date in MQL Freebase Query?

Freebase's metaweb query language can be used to retreive future events if you pass in an ISO8601 formatted date. [{ "id": null, "name": null, "start_date" : null, ...
1
vote
1answer
95 views

Freebase MQL Query output?

I have the following query: [{ "type": "/tv/tv_series_episode", "series": "The Simpsons", "/tv/tv_series_episode/guest_stars": [{ "actor": null }], }] I want to print out a list of ...