query-88d1ce55011ec44c22b4c9babae5213a

rq turtle/ttl

Retrieve all genes and mature miRNAs which are involved in the 'regulation of immune response' (GO:0050776) SELECT DISTINCT ?gene ?geneLabel ?mir ?mirLabel WHERE { ?protein wdt:P682 [wdt:P686 'GO:0050776'] . # regulation of immune response ?protein wdt:P702 ?gene .

?mir wdt:P128 ?gene . SERVICE wikibase:label { bd:serviceParam wikibase:language "en" .} }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Retrieve all genes and mature miRNAs which are involved in the 'regulation of immune response' (GO:0050776)
SELECT DISTINCT ?gene ?geneLabel ?mir ?mirLabel WHERE {
  ?protein wdt:P682 [wdt:P686 'GO:0050776'] . # regulation of immune response
  ?protein wdt:P702 ?gene .

  ?mir wdt:P128 ?gene .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" .}
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?gene"):::projected v3("?mir"):::projected v1("?protein") a1((" ")) c7(["bd:serviceParam"]):::iri c9(["en"]):::literal c2(["GO:0050776"]):::literal a1 --"wdt:P686"--> c2 v1 --"wdt:P682"--> a1 v1 --"wdt:P702"--> v2 v3 --"wdt:P128"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end