query-d552135a8562c83b942515ae51ffb883
Categories d'ocupacions SELECT DISTINCT ?ocupacio ?ocupacioLabel ?cat ?categoria ?conte ?conteLabel WHERE { ?ocupacio wdt:P31 wd:Q28640. ?ocupacio wdt:P910 ?cat. ?categoria schema:about ?cat. ?categoria schema:isPartOf https://ca.wikipedia.org/. OPTIONAL{?cat wdt:P4224 ?conte} 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#>
# Categories d'ocupacions
SELECT DISTINCT ?ocupacio ?ocupacioLabel ?cat ?categoria ?conte ?conteLabel
WHERE {
?ocupacio wdt:P31 wd:Q28640.
?ocupacio wdt:P910 ?cat.
?categoria schema:about ?cat.
?categoria schema:isPartOf <https://ca.wikipedia.org/>.
OPTIONAL{?cat wdt:P4224 ?conte}
SERVICE wikibase:label {bd:serviceParam wikibase:language "ca" . }
}
Query found at
- https://www.wikidata.org/wiki/User:Pere_prlpz
- https://www.wikidata.org/wiki/User:Pere_prlpz/categories
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?cat"):::projected
v3("?categoria"):::projected
v4("?conte"):::projected
v1("?ocupacio"):::projected
c9(["bd:serviceParam"]):::iri
c2(["wd:Q28640"]):::iri
c6([https://ca.wikipedia.org/]):::iri
c11(["ca"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P910"--> v2
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P4224".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end