How to display list using SPARQL

204 Views Asked by At

I am trying to show the list of Charities from this page - http://dbpedia.org/page/Category:Charitable_organizations

The list is in is dct:subject of property, I have made a query but it doesn't work.

QUERY

WHERE {
         ?s dbo:type dbr:Charitable_organization .
      }

I do kind of know how to use SPARQL with DBPEDIA but am unsure how to use the dct:subject part and display the `dbr:'

Using the site- http://dbpedia.org/sparql to execute queries. So any help on how I can show the list of charities from that website? Thanks for reading.

1

There are 1 best solutions below

2
On

Your query should be:

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>        
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX dbr: <http://dbpedia.org/resource/>
## Added ##
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT * 
WHERE {
         ?s dbo:type dbr:Charitable_organization .
      }

Links

  • Live Results Page Link.

  • Live Query Definition Link.