query-c35df7d37644beda7486a929723b0c13

rq turtle/ttl

può essere riscritto così:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?donna ?donnaLabel
WHERE
{
  BIND(wdt:P31 AS ?istanzaDi).
  BIND(wd:Q5 AS ?umano).
  BIND(wdt:P21 AS ?sessoOgenere).
  BIND(wd:Q6581072 AS ?femmina).
  BIND(wdt:P106 AS ?occupazione).
  BIND(wd:Q42603 AS ?sacerdote).
  ?donna ?istanzaDi ?umano;
         ?sessoOgenere ?femmina;
         ?occupazione ?sacerdote.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v7("?donna"):::projected v4("?femmina") v1("?istanzaDi") v5("?occupazione") v6("?sacerdote") v3("?sessoOgenere") v2("?umano") c2(["bd:serviceParam"]):::iri c4(["#91;AUTO_LANGUAGE#93;"]):::literal bind0[/"'wdt:P31'"/] bind0 --as--o v1 bind1[/"'wd:Q5'"/] bind1 --as--o v2 bind2[/"'wdt:P21'"/] bind2 --as--o v3 bind3[/"'wd:Q6581072'"/] bind3 --as--o v4 bind4[/"'wdt:P106'"/] bind4 --as--o v5 bind5[/"'wd:Q42603'"/] bind5 --as--o v6 v7 -->v1--> v2 v7 -->v3--> v4 v7 -->v5--> v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end