query-f855ab4887282ffcb19fa172e8cece55
Categories amb temes associats. SELECT DISTINCT ?cat ?categoria ?tema ?temaLabel WHERE { ?cat wdt:P31 wd:Q4167836. ?cat wdt:P971 ?tema. ?categoria schema:about ?cat. ?categoria schema:isPartOf https://ca.wikipedia.org/. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es" . } } ORDER BY ?cat
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#>
# Categories amb temes associats.
SELECT DISTINCT ?cat ?categoria ?tema ?temaLabel
WHERE {
?cat wdt:P31 wd:Q4167836.
?cat wdt:P971 ?tema.
?categoria schema:about ?cat.
?categoria schema:isPartOf <https://ca.wikipedia.org/>.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es" . }
}
ORDER BY ?cat
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?cat"):::projected
v3("?categoria"):::projected
v2("?tema"):::projected
c8(["bd:serviceParam"]):::iri
c2(["wd:Q4167836"]):::iri
c6([https://ca.wikipedia.org/]):::iri
c10(["#91;AUTO_LANGUAGE#93;,ca,en,es"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P971"--> v2
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end