sparql-examples

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

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

Query_150

rq turtle/ttl

Some cell lines and the panel (collection) they belong to

Use at


PREFIX cello: <https://purl.expasy.org/cellosaurus/rdf/ontology/>
select ?cl ?cl_name ?coll where {
        ?cl cello:inCollection ?coll .
        ?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("?coll"):::projected 
  v1 --"cello:inCollection"-->  v2
  v1 --"cello:recommendedName"-->  v3