A set of SPARQL examples that are used in different SIB resources
Predicates and objects, for a given UniParc accession as a subject
PREFIX up: <http://purl.uniprot.org/core/>
SELECT
?predicate
?object
WHERE {
<http://purl.uniprot.org/uniparc/UPI000012A0AD> ?predicate ?object
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?object"):::projected
v1("?predicate"):::projected
c1([http://purl.uniprot.org/uniparc/UPI000012A0AD]):::iri
c1 -->v1--> v2