query-f53170cd282c84a583017d83ef6b72f3

rq turtle/ttl

categories de persones amb tema associat opcional SELECT DISTINCT ?cat ?categoria ?associat WHERE { ?cat wdt:P31 wd:Q4167836. ?cat wdt:P4224 wd:Q5. ?categoria schema:about ?cat. ?categoria schema:isPartOf https://ca.wikipedia.org/. OPTIONAL {?cat wdt:P971 ?associat} }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
# categories de persones amb tema associat opcional
SELECT DISTINCT ?cat ?categoria ?associat WHERE {
  ?cat wdt:P31 wd:Q4167836.
  ?cat wdt:P4224 wd:Q5.
  ?categoria schema:about ?cat.
  ?categoria schema:isPartOf <https://ca.wikipedia.org/>.
  OPTIONAL {?cat wdt:P971 ?associat}
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?associat"):::projected v1("?cat"):::projected v2("?categoria"):::projected c4(["wd:Q5"]):::iri c2(["wd:Q4167836"]):::iri c7([https://ca.wikipedia.org/]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P4224"--> c4 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c7 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P971".-> v3 end