Unable to find some expected data in the query result

Hi, Team!

I am unable to find some expected data in the query result. For instance, when I manually check the page About: David Graeber, I see four “influenced” relations to the ontology http://dbpedia.org/ontology/Animal:

Bob_Black
Murray_Bookchin
Karl_Polanyi
Marcel_Mauss

But I never get Karl_Polanyi in my SPARQL query result.

Please help me check the reason.


prefix gephi:<http://gephi.org/>
prefix foaf: <http://xmlns.com/foaf/0.1/>
CONSTRUCT{
  ?artist gephi:label ?artistName .
  ?influence gephi:label ?influenceName .
  ?artist <http://dbpedia.org/ontology/influenced> ?influence
} WHERE {
  ?artist a
  <http://dbpedia.org/ontology/Animal> .
  ?artist <http://dbpedia.org/ontology/influenced> ?influence.
  ?artist foaf:name ?artistName.
  ?influence foaf:name ?influenceName.
}