sparql-examples

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

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

neXtProt/NXQ_00062

Proteins which have at least one zinc finger of any subtype

Use at

PREFIX : <http://nextprot.org/rdf/>

SELECT DISTINCT ?entry WHERE {
 ?entry :isoform ?iso.
 ?iso :zincFingerRegion ?_.
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v3("?_")
  v1("?entry"):::projected 
  v2("?iso")
  v1 --":isoform"-->  v2
  v2 --":zincFingerRegion"-->  v3