query-f3fe5b3d53e787b3c05d04d858b005e1

rq turtle/ttl

Numero di item che sono istanza sia di 'opera scritta' che di 'edizione' SELECT ?item ?itemLabel WHERE { ?item wdt:P31 wd:Q47461344 . ?item wdt:P31 wd:Q3331189 . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]it,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 bd: <http://www.bigdata.com/rdf#>
# Numero di item che sono istanza sia di 'opera scritta' che di 'edizione' 
SELECT ?item ?itemLabel WHERE {
  ?item wdt:P31 wd:Q47461344 .
  ?item wdt:P31 wd:Q3331189 .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]it,en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected c5(["bd:serviceParam"]):::iri c3(["wd:Q3331189"]):::iri c2(["wd:Q47461344"]):::iri c7(["#91;AUTO_LANGUAGE#93;it,en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P31"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end