0

I am using the Freebase Image Service eg.

Image of Arnie

However, many of the topics don't have images eg.

Lord Voldemort

How do I check the topic using MQL (and PHP) to see whether it has an associated image?

txchou
  • 647
  • 1
  • 6
  • 15

1 Answers1

1

Look at the /common/topic/image property - for example,

{
  "id": "/en/snow_leopard",
  "/common/topic/image": [{
    "id":   null,
    "name": null
  }]
}​

Query editor link - wrapping that into PHP should be easy.

Philip Kendall
  • 4,304
  • 1
  • 23
  • 42