query-c2c9831c58d1552d532ae4ed621d2493

rq turtle/ttl

Suddivisione per numero di identificativi degli autori di articoli di riviste italiane relative alla scienza dell'informazione e delle biblioteche SELECT ?identificativi (COUNT(DISTINCT ?autore) AS ?autori) WHERE { ?rivista wdt:P31 wd:Q5633421 ; wdt:P495 wd:Q38 ; wdt:P921 wd:Q13420675 . ?articolo wdt:P31 wd:Q13442814 ; wdt:P1433 ?rivista ; wdt:P50 ?autore . ?autore wdt:P31 ?inst ; wikibase:identifiers ?identificativi . } GROUP BY ?identificativi ORDER BY xsd:integer(?identificativi)

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#Suddivisione per numero di identificativi degli autori di articoli di riviste italiane relative alla scienza dell'informazione e delle biblioteche
SELECT ?identificativi (COUNT(DISTINCT ?autore) AS ?autori)
WHERE {
  ?rivista wdt:P31 wd:Q5633421 ; wdt:P495 wd:Q38 ; wdt:P921 wd:Q13420675 .
  ?articolo wdt:P31 wd:Q13442814 ; wdt:P1433 ?rivista ; wdt:P50 ?autore .
  ?autore wdt:P31 ?inst ; wikibase:identifiers ?identificativi .
}
GROUP BY ?identificativi
ORDER BY xsd:integer(?identificativi)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?articolo") v4("?autore"):::projected v6("?autori") v1("?identificativi"):::projected v5("?inst") v2("?rivista") c4(["wd:Q38"]):::iri c7(["wd:Q13442814"]):::iri c6(["wd:Q13420675"]):::iri c2(["wd:Q5633421"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P495"--> c4 v2 --"wdt:P921"--> c6 v3 --"wdt:P31"--> c7 v3 --"wdt:P1433"--> v2 v3 --"wdt:P50"--> v4 v4 --"wdt:P31"--> v5 v4 --"wikibase:identifiers"--> v1 bind1[/"count(?autore)"/] v4 --o bind1 bind1 --as--o v6