gnd links - miku/graphapi GitHub Wiki
Links to Other (L)D Hubs
GNDs are set in relationship with different other data sources.
foaf:page
There are instances that link to a Wikipedia page instead of the DBpedia page. A first impression of this, ordered by class, is given by this query:
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
SELECT (COUNT(?gnd) AS ?count) ?type WHERE {
?gnd foaf:page ?uri .
FILTER NOT EXISTS{
?gnd owl:sameAs ?uri .
FILTER (regex(str(?uri), "dbpedia\\.org"))
}
?gnd a ?type .
}
GROUP BY ?type
ORDER BY DESC(?count)
Result: