query-70b0c49b76abb96b2660288c13cfa00d

rq turtle/ttl

Biological processes impacted by hsa-miR-211-5p SELECT DISTINCT ?bioProcess ?bioProcessLabel WHERE { ?mirna rdfs:label 'hsa-miR-211-5p'@en . ?mirna wdt:P128 ?gene . ?gene wdt:P688 ?protein . ?protein wdt:P682 ?bioProcess .

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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Biological processes impacted by hsa-miR-211-5p
SELECT DISTINCT ?bioProcess ?bioProcessLabel WHERE {
    ?mirna rdfs:label 'hsa-miR-211-5p'@en .
    ?mirna wdt:P128 ?gene .
    ?gene wdt:P688 ?protein .
    ?protein wdt:P682 ?bioProcess .

    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; v4("?bioProcess"):::projected v2("?gene") v1("?mirna") v3("?protein") c2([shsa-miR-211-5p^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal c7(["bd:serviceParam"]):::iri c9(["en"]):::literal v1 --"rdfs:label"--> c2 v1 --"wdt:P128"--> v2 v2 --"wdt:P688"--> v3 v3 --"wdt:P682"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end