query-5a245622416f41b1a15608e29c48a181

rq turtle/ttl

title:Query con tutti i valori (ps:) e non solo il best rank (wdt:) SELECT ?item ?itemLabel ?datanascita ?rank WHERE { ?item wdt:P106 wd:Q13418253. ?item p:P569 ?dichiarazione . ?dichiarazione wikibase:rank ?rank . ?dichiarazione ps:P569 ?datanascita . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Query con tutti i valori (ps:) e non solo il best rank (wdt:)
SELECT ?item ?itemLabel ?datanascita ?rank
WHERE {
  ?item wdt:P106 wd:Q13418253.
  ?item p:P569 ?dichiarazione .
  ?dichiarazione wikibase:rank ?rank .
  ?dichiarazione ps:P569 ?datanascita .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?datanascita"):::projected v2("?dichiarazione") v1("?item"):::projected v3("?rank"):::projected c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q13418253"]):::iri v1 --"p:direct/P106"--> c2 v1 --"p:P569"--> v2 v2 --"wikibase:rank"--> v3 v2 --"p:statement/P569"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end