query-52454eee86f8cff9d0889de83b02a588
For these genes involved in regulation of immune reponse, are there drugs which modulate the immune response, by targeting one of these gene? SELECT DISTINCT ?gene ?geneLabel ?mir ?mirLabel ?drug ?drugLabel WHERE { ?x wdt:P682 [wdt:P686 'GO:0050776'] . # regulation of immune response ?x wdt:P702 ?gene . ?x wdt:P129 ?drug .
?mir wdt:P128 ?gene .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" .}
}
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#For these genes involved in regulation of immune reponse, are there drugs which modulate the immune response, by targeting one of these gene?
SELECT DISTINCT ?gene ?geneLabel ?mir ?mirLabel ?drug ?drugLabel WHERE {
?x wdt:P682 [wdt:P686 'GO:0050776'] . # regulation of immune response
?x wdt:P702 ?gene .
?x wdt:P129 ?drug .
?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;
v3("?drug"):::projected
v2("?gene"):::projected
v4("?mir"):::projected
v1("?x")
a1((" "))
c8(["bd:serviceParam"]):::iri
c10(["en"]):::literal
c2(["GO:0050776"]):::literal
a1 --"wdt:P686"--> c2
v1 --"wdt:P682"--> a1
v1 --"wdt:P702"--> v2
v1 --"wdt:P129"--> v3
v4 --"wdt:P128"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end