query-debaf50b55fe346e4d5b4a3e42f4073e
title: Within-scope papers about Rosaceae SELECT ?paper ?title ?topic ?topicLabel
WHERE {
?paper wdt:P921 ?topic ;
wdt:P6104 wd:Q56241615 ;
wdt:P1476 ?title .
?topic wdt:P171* wd:Q46299 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Within-scope papers about Rosaceae
SELECT ?paper ?title ?topic ?topicLabel
WHERE {
?paper wdt:P921 ?topic ;
wdt:P6104 wd:Q56241615 ;
wdt:P1476 ?title .
?topic wdt:P171* wd:Q46299 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?paper"):::projected
v3("?title"):::projected
v2("?topic"):::projected
c8(["bd:serviceParam"]):::iri
c3(["wd:Q56241615"]):::iri
c6(["wd:Q46299"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P921"--> v2
v1 --"wdt:P6104"--> c3
v1 --"wdt:P1476"--> v3
v2 --"wdt:P171"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end