Hi Everyone
Just a small thing tonight; I was wondering how I could modify this query to show only bands with the name "kinks", I tried tagging = #kinks after dc:Band but got no results.
Query SPARQL_QUERY = QueryFactory.create("" +
"PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>" +
"PREFIX dc: <http://ontologyloc.com/Bands.owl#>" +
"SELECT DISTINCT ?BandName WHERE { ?BandName rdf:type dc:Band }"
);
Thanks!