query-dde53eaa2404a09e34d0153f71fdfde7
articles i etiquetes de coses de Barcelona SELECT DISTINCT ?item ?article ?itemLabel ?titol WHERE { ?item wdt:P131 wd:Q1492. ?article schema:about ?item; schema:isPartOf https://ca.wikipedia.org/. ?article schema:name ?titol. SERVICE wikibase:label { bd:serviceParam wikibase:language "ca" } }
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#>
#articles i etiquetes de coses de Barcelona
SELECT DISTINCT ?item ?article ?itemLabel ?titol WHERE {
?item wdt:P131 wd:Q1492.
?article schema:about ?item;
schema:isPartOf <https://ca.wikipedia.org/>.
?article schema:name ?titol.
SERVICE wikibase:label { bd:serviceParam wikibase:language "ca" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?item"):::projected
v3("?titol"):::projected
c8(["bd:serviceParam"]):::iri
c2(["wd:Q1492"]):::iri
c5([https://ca.wikipedia.org/]):::iri
c10(["ca"]):::literal
v1 --"wdt:P131"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
v2 --"schema:name"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end