Skip to content

Distinction between a URI and a Web Page about it

timrdf edited this page Mar 18, 2013 · 6 revisions
csv2rdf4lod-automation is licensed under the [Apache License, Version 2.0](https://github.com/timrdf/csv2rdf4lod-automation/wiki/License)

dbpedia describes this with very well with an example.

How many pointers to web pages are loaded in the triple store? (results):

PREFIX foaf: <http://xmlns.com/foaf/0.1/>

SELECT ?graph count(*) as ?count
WHERE {
  GRAPH ?graph {
    ?uri foaf:isPrimaryTopicOf ?page
  }
  filter (?uri != ?page) # This is just to make a point, they are never equal.
} GROUP BY ?graph ORDER BY desc(?count)

Related work

Historical notes

Clone this wiki locally