query-301c3f3259a55c401e7997dffe05b21c

rq turtle/ttl

autores d'una obra en catalĂ  segons Wikidata SELECT DISTINCT ?escriptora ?escriptoraLabel ?articleca ?articlees ?articleeu ?articlegl WHERE { ?escriptora wdt:P31 wd:Q5. ?escriptora wdt:P21 wd:Q6581072. ?obra wdt:P50 ?escriptora. ?obra wdt:P407 wd:Q7026. MINUS {?obra wdt:P655 [].} OPTIONAL { ?articleca schema:about ?escriptora. ?articleca schema:isPartOf https://ca.wikipedia.org/. } OPTIONAL { ?articlees schema:about ?escriptora. ?articlees schema:isPartOf https://es.wikipedia.org/. } OPTIONAL { ?articlegl schema:about ?escriptora. ?articlegl schema:isPartOf https://gl.wikipedia.org/. } OPTIONAL { ?articleeu schema:about ?escriptora. ?articleeu schema:isPartOf https://eu.wikipedia.org/. } SERVICE wikibase:label { bd:serviceParam wikibase:language "ca, oc, en, fr, ceb" } }

Use at

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#>
# autores d'una obra en catalĂ  segons Wikidata
SELECT DISTINCT ?escriptora ?escriptoraLabel ?articleca ?articlees ?articleeu ?articlegl WHERE {
  ?escriptora wdt:P31 wd:Q5.
  ?escriptora wdt:P21 wd:Q6581072.
  ?obra wdt:P50 ?escriptora.
  ?obra wdt:P407 wd:Q7026.
  MINUS {?obra wdt:P655 [].}
  OPTIONAL {
    ?articleca schema:about ?escriptora.
    ?articleca schema:isPartOf <https://ca.wikipedia.org/>.
  }
  OPTIONAL {
    ?articlees schema:about ?escriptora.
    ?articlees schema:isPartOf <https://es.wikipedia.org/>.
  }
  OPTIONAL {
    ?articlegl schema:about ?escriptora.
    ?articlegl schema:isPartOf <https://gl.wikipedia.org/>.
  }
  OPTIONAL {
    ?articleeu schema:about ?escriptora.
    ?articleeu schema:isPartOf <https://eu.wikipedia.org/>.
  }
    SERVICE wikibase:label { bd:serviceParam wikibase:language "ca, oc, en, fr, ceb" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?articleca"):::projected v4("?articlees"):::projected v6("?articleeu"):::projected v5("?articlegl"):::projected v1("?escriptora"):::projected v2("?obra") a1((" ")) c18(["ca, oc, en, fr, ceb"]):::literal c13([https://gl.wikipedia.org/]):::iri c4(["wd:Q6581072"]):::iri c11([https://ca.wikipedia.org/]):::iri c16(["bd:serviceParam"]):::iri c14([https://eu.wikipedia.org/]):::iri c12([https://es.wikipedia.org/]):::iri c2(["wd:Q5"]):::iri c7(["wd:Q7026"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P21"--> c4 v2 --"wdt:P50"--> v1 v2 --"wdt:P407"--> c7 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P655"--> a1 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."schema:about".-> v1 v3 --"schema:isPartOf"--> c11 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:about".-> v1 v4 --"schema:isPartOf"--> c12 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v5 -."schema:about".-> v1 v5 --"schema:isPartOf"--> c13 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v6 -."schema:about".-> v1 v6 --"schema:isPartOf"--> c14 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c16 --"wikibase:language"--> c18 end