简体   繁体   中英

How to use RDF:label in protege

For the RDF labels I'm trying something really simple to show all the labels in my ontology, but even that its not working. Do you have any idea how I need to write any rdfs:label

SELECT?subject?label WHERE {?subject rdfs:label?label }

Try this:

SELECT ?subject ?label WHERE { ?subject <http://www.w3.org/2000/01/rdf-schema#label> ?label }

You could also maybe use a prefix like so:

PREFIX rdfs:    <http://www.w3.org/2000/01/rdf-schema#>

SELECT ?subject ?label WHERE { ?subject rdfs:label ?label }

You can try out the queries by using the DBPedia endpoint:

https://dbpedia.org/sparql

To use existing predicates from other graphs you first have to include the reference to the predicate. Otherwise the query cannot find the correct predicate.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM