sparql-examples

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

View the Project on GitHub sib-swiss/sparql-examples

Query_149

rq turtle/ttl

Some cell lines and the group they belong to

Use at


PREFIX cello: <https://purl.expasy.org/cellosaurus/rdf/ontology/>
select ?cl ?cl_name ?group where {
        ?cl cello:inGroup ?group .
        ?cl cello:recommendedName ?cl_name .
}
limit 100
    
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v1("?cl"):::projected 
  v3("?cl_name"):::projected 
  v2("?group"):::projected 
  v1 --"cello:inGroup"-->  v2
  v1 --"cello:recommendedName"-->  v3