query-d09d27715b5b6d2e16e2673e60e9bed6
Ponts del Duero amb article
SELECT DISTINCT ?pont ?pontLabel ?article WHERE {
?pont wdt:P31/wdt:P279* wd:Q12280.
?pont wdt:P177 wd:Q14299.
?article schema:about ?pont.
?article schema:isPartOf https://ca.wikipedia.org/.
SERVICE wikibase:label {bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es,fr".}
}
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#>
#Ponts del Duero amb article
SELECT DISTINCT ?pont ?pontLabel ?article WHERE {
?pont wdt:P31/wdt:P279* wd:Q12280.
?pont wdt:P177 wd:Q14299.
?article schema:about ?pont.
?article schema:isPartOf <https://ca.wikipedia.org/>.
SERVICE wikibase:label {bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es,fr".}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?pont"):::projected
a1((" "))
c5(["wd:Q14299"]):::iri
c10(["bd:serviceParam"]):::iri
c3(["wd:Q12280"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,ca,en,es,fr"]):::literal
c8([https://ca.wikipedia.org/]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P177"--> c5
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end