sparql-examples

A set of SPARQL examples that are used in different ERDERA resources

View the Project on GitHub ERDERA/sparql-examples

001

Getting a concept label from ORPHAcode.

Use at

PREFIX ordo:<http://www.orpha.net/ORDO/>
PREFIX w3: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?label
WHERE {
ordo:Orphanet_558 w3:label ?label
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v1("?label"):::projected 
  c1([http://www.orpha.net/ORDO/Orphanet_558]):::iri 
  c1 --http://www.w3.org/2000/01/rdf-schema#label-->  v1