query-8f22ea70835b6d53ee75a217cc38b14d
Rius del Llobregat amb article SELECT ?item ?itemLabel ?desemboca ?article WHERE { ?item wdt:P403* wd:Q31424. ?article schema:about ?item. ?article schema:isPartOf https://ca.wikipedia.org/. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es,an,eu,pl,sv,ceb" . ?item rdfs:label ?itemLabel } OPTIONAL {?item wdt:P403 ?desemboca} }
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Rius del Llobregat amb article
SELECT ?item ?itemLabel ?desemboca ?article
WHERE {
?item wdt:P403* wd:Q31424.
?article schema:about ?item.
?article schema:isPartOf <https://ca.wikipedia.org/>.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es,an,eu,pl,sv,ceb" .
?item rdfs:label ?itemLabel
}
OPTIONAL {?item wdt:P403 ?desemboca}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v4("?desemboca"):::projected
v1("?item"):::projected
v3("?itemLabel"):::projected
c9(["#91;AUTO_LANGUAGE#93;,ca,en,es,an,eu,pl,sv,ceb"]):::literal
c7(["bd:serviceParam"]):::iri
c5([https://ca.wikipedia.org/]):::iri
c2(["wd:Q31424"]):::iri
v1 --"wdt:P403"--> 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
v1 --"rdfs:label"--> v3
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P403".-> v4
end