query-1e926d925ee939ca04e2af0fa95ac18b
HYanWong
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?sitelink WHERE {
BIND("RELN" AS ?symbol)
?gene wdt:P353 ?symbol;
wdt:P688 ?product.
?sitelink schema:isPartOf <https://en.wikipedia.org/>;
schema:about ?product.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?gene")
v3("?product")
v4("?sitelink"):::projected
v1("?symbol")
c4([https://en.wikipedia.org/]):::iri
bind0[/"'RELN'"/]
bind0 --as--o v1
v2 --"wdt:P353"--> v1
v2 --"wdt:P688"--> v3
v4 --"schema:isPartOf"--> c4
v4 --"schema:about"--> v3