Tagged Questions
Freebase's Metaweb Query Language or ForEx Metatrader Query Language
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
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
53 views
Robust and easy way of running MQL Freebase queries from Android
I need your help again. If I go to http://www.freebase.com/queryeditor/ and run a simple query, let's say:
[{
"type": "/time/month",
"name": [{}],
"month_number": ...
2
votes
2answers
39 views
How can I write a conditional query with MQL?
I try to extract some extra information if my query returns a result.
For example in this query, notable_for returns as "/music/musical_group" and I want to merge another query to extract some ...
2
votes
1answer
28 views
Eliminating MQL results on any_reverse reflection
I'm trying to get all events in a geo bounding box (that approximately covers France), but I want to exclude all recurring events, so I don't get heaps of French Tennis opens and the like. For this I ...
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 ...
2
votes
2answers
284 views
Translate JSON MQL queries into SPARQL
I have a punch of JSON MQL queries to query Freebase.
Is there a tool to translate them into SPARQL to use them with OpenRDF Sesame?
Thanks!
2
votes
1answer
137 views
Parsing the Freebase Topic HTTP API - JSON & Javascript
I am trying to parse a JSON output:
http://www.freebase.com/experimental/topic/standard?id=/en/colonel_sanders
I'd like to put the basic data into an array using Javascript. In the "properties" ...
2
votes
1answer
82 views
Freebase MQL Test for Not True
I have a simple script that retrieves all of the Freebase types within a domain. Now I want to filter out the CVT types, but I can't figure out how to write that test. If I write it the way that seems ...
2
votes
1answer
107 views
Get Members of Band
If I look at the Freebase page for the band '311', I see Chad Sexton listed.
http://www.freebase.com/view/en/311
I am trying to query for the members of a band :
{
"name" : "311",
...
2
votes
1answer
93 views
Freebase; select a random record?
1) Is there any way to select a random record from Freebase? If I do a limit of 1, it consistently returns the same record. I could grab the larger data set and select a random rec from that but that ...
2
votes
2answers
128 views
Freebase MQL filter where value == null?
Can get all triples with value null in specific field?
All people with date_of_birth equal null?
[
"type": "/people/person",
"date_of_birth":null,
"name":null
]
1
vote
2answers
71 views
PHP and JSON Query to pull data from Freebase
I need to pull out the info of the Production Company and Distribution Company for any given movie and I'm using the Freebase for this. Happens I never used JSON and don't know how to integrate the ...
1
vote
1answer
24 views
Freebase MQL - Any way to copy an element's value to a new element in lowercase?
In the following basic MQL, is there a way to retrieve the film's name as a lowercase copy of itself? Maybe by passing a Javascript toLowerCase() or something to a variable copy?
[{
...
1
vote
2answers
26 views
Freebase MQL - Don't show parent object if a value in array element is present?
Trying to get some movies and their genres but leave out any records that contain the genre "Thriller" in the array of genres.
How do I not only ignore the genre key itself for "Thriller", but ...
1
vote
2answers
38 views
Freebase: Get name & Wikipedia ID in one query in a certain language
Is it possible to do one query in MQL to obtain the name and the wikipedia ID for a certain language from Freebase? If that's possible, is it also possible to do this for a set of languages (eg. ...
1
vote
1answer
42 views
Freebase “Key cursor is a reserved word”
Following the Freebase docs on Envelope Parameters, running
{
"cursor":true,
"query":[{
"type":"/music/album",
"artist":"The Police",
"name":null,
"limit":10
}]
}
results in ...
1
vote
1answer
59 views
Getting Wikipedia IDs in MQL
Freebase WEX dumps contain a wpid column corresponding to the page_id from the source MediaWiki database in the freebase_wpid table. This table provides a mapping between Wikipedia numeric ...
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
54 views
Freebase API get other types queries
I'm using freebase python to access the freebase api. I have the following query I would like to execute:
query = [{
"id": None,
"name" : [],
"type" : "/people/person",
...
1
vote
1answer
143 views
Freebase Java API full text retrieval
Is it possible to use the "text" MQL extension with the java api, so you can get the full description text.
I mean sth like this:link but for the java api.
1
vote
2answers
43 views
Knowing the genre for a certain artist using freebase
I am new at freebase , I just need to get the genre for a certain artist using MQL
Thanks
1
vote
3answers
64 views
Finding the schema type of Freebase type in MQL
Anyone know how to get the type of an expected type ?
For example, the "/people/person" type has a property called "/people/person/places_lived" which has an expected type of "/people/place_lived"
...
1
vote
1answer
91 views
Traversing the Freebase Graph
I'm trying to fetch multiple levels of influence relationships from a particular person.
Roughly, this query explains what I'm trying to accomplish
{ "id" : "/en/george_orwell",
"name" : null,
...
1
vote
1answer
53 views
Freebase search_api and excluding results by specified type
is anyone know, how to exclude some topics with specified type(s) using search api and mql?
For example i'm try to find all topics "Voodoo People", and exclude only those, that have composition and ...
1
vote
1answer
100 views
Freebase MQL VS Freebase Suggest (n:type) in results
i'm try to get results from freebase using mql, for example:
http://api.freebase.com/api/service/mqlread?query={"query":{"name~=":"Barack","name":null,"type":[],"limit":1}}"
And as expected i'm get ...
1
vote
2answers
85 views
Freebase MQL Query print article?
here's my query:
[{
"type": "/tv/tv_series_episode",
"series": "The Simpsons",
"guest_stars": [{
"actor": {
"/common/topic/article": [{
"id": null,
"optional": ...
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 ...
1
vote
1answer
117 views
How to get cursor from mqlread() when using Freebase API?
I'm using the Python-Freebase module's mqlread(). Using the following query:
query = [{
"cursor": True,
"id": None,
"type": "/games/game",
"mid": None,
}]
That returns 100 ...
1
vote
1answer
160 views
Freebase Query with “JOINS”
... Yeah, yeah, I know traditional joins don't exist. I actually like the freebase query methodology in theory, just having a little trouble getting it to actually work for me : )
Anyone have a ...
1
vote
1answer
117 views
Freebase geo search
I'm wondering if it's possible to get, for example, all events that occurred in a geographical area, as defined by lat/long coordinates. For instance a rectangular area on the shores of Normandy ...
1
vote
1answer
92 views
How Enable Extended MQL When Reading From Freebase API
Freebase contains a fair amount of documentation but lacks some specific examples of working code for many scenarios.
One of them is how to implement (in Python, using the Python Freebase library) a ...
1
vote
2answers
213 views
cURL and Freebase's Api
I am having problems with the freebase MQL login service. I am making a post request then the freebase api should send back headers which I will then analyse and get information from.
But the only ...
1
vote
1answer
87 views
How Can I Retrieve the Types for a Topic
As I understand it, the Freebase taxonomy generally boils down to this hierarchy:
Domain Category > Domain > Type > Topic
I have an application that receives input and does a bit of ...
1
vote
3answers
482 views
Write a Freebase MQL query that gets everything back about a given topic?
I want to write a query that gets back everything that is known about a topic (only needs to be one level deep.
When working in the Freebase MQL Editor they give the following example for "Everything ...
0
votes
1answer
40 views
Freebase retrieve not edited data
In addition to this question:link i'm asking if i can retrieve data like the text or even geolocation from topics that seems that they have not any info been entered(but there is text description from ...
0
votes
1answer
38 views
Freebase Twitter Extension
I have tried the Freebase MQL twitter search extension shown here:
http://www.freebase.com/docs/mql_extensions/.base.topics.news.twitter_mentions
and there appears to be an error. There is no ...
0
votes
1answer
226 views
Metatrader MQL4: Can't define function default values in .mqh file
He there!
Question to MQL experts.
I can't understand how to define default values for functions in my library. Default values tend to be ignored and I get "wrong parameters count" error message.
...
0
votes
1answer
100 views
How to set Alerts for indicators values in MT4 platforms
Let say, that I am scalping the market. I would like to set up alerts whenever the indicators value changes, let say stochastic hit the value of 80/20, RSI changed to below/above 50, MACD changed ...
0
votes
1answer
172 views
How to MQL query string into Tranlated URL?
http://api.geoapi.com/v1/q
My query: {"lat": 37.75629, "lon": -122.4213, "radius": "1km", "entity": [{"type": "business", "guid": null}]}
...
0
votes
3answers
393 views
How To Escape Characters When Reading JSON
I need to write out all the variables in this JSON response:
"result": {
"\/common\/topic\/weblink": [
{
"url": "http:\/\/www.boardgamegeek.com\/boardgame\/13",
...
-2
votes
1answer
49 views
Which database is Freebase.com using? [closed]
Is it a custom database, or are they using a 'classic' triple store ?