[Developers] Getting the User Created Properties of a Type
Shawn Simister
narphorium at gmail.com
Sun Jul 29 07:12:53 UTC 2007
I would like to get a list of the user created properties for a Freebase
type so I created the following query:
{
"q1": {
"query": [{
"type" : "/type/type",
"name": "/people/person",
"properties" : [{}]
}]
}
}
But when I run the query I don't get any properties returned in the result.
({
"status": "200 OK",
"code": "/api/status/ok",
"q1": {
"code": "/api/status/ok",
"result": [
{
"type": "/type/type",
"name": "/people/person",
"properties": []
}
]
}
})
I know that this sort of query must be possible because something
similar would have had to have been used to write the Freebase Type
Viewer application. So how can I get the same sort of results in my own
application?
Shawn
More information about the Developers
mailing list