I am trying to query freebase to get all the award winning movies that a person directed or acted in. If I run this with Steven Spielberg (who has both directed AND acted in award winning movies), it works fine:
[{
"/type/object/mid": "/m/06pj8",
"/film/director/film": [{
"type": "/award/award_winning_work",
"name": null
}],
"/film/actor/film": [{
"film": [{
"type": "/award/award_winning_work",
"name": null
}]
}]
}]
But the same query with Matt Damon (/m/0169dl) (who has not directed award winning movies but acts in those movies) returns nothing. I would expect to return all the movies Matt Damon acted in, in this case.
thanks