query-8fa5b9049cf785e499b2b361074776aa
TODO
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?oberour ?oberourLabel ?page WHERE {
?oberour wdt:P31 wd:Q5.
?page schema:about ?oberour.
?page schema:isPartOf <https://br.wikisource.org/> .
SERVICE wikibase:label { bd:serviceParam wikibase:language "br". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?oberour"):::projected
v2("?page"):::projected
c9(["br"]):::literal
c7(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c5([https://br.wikisource.org/]):::iri
v1 --"wdt:P31"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end