Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
17 lines (13 sloc) 516 Bytes
#+ summary: Find all proteins involved in a biological process
#+ endpoint: https://query.wikidata.org/sparql
#+ method: GET
#+ pagination: 10
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?protein ?proteinLabel WHERE {
?protein wdt:P682 ?process .
?protein wdt:P31 wd:Q8054 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
You can’t perform that action at this time.