query-e8030f9eee1a342b33e8a91b6cf18137

rq turtle/ttl

Archives1. Return a list of people ranked in the order of largest number of institutions holding their papers to smallest number of institutions holding their papers: )?count(DESC ORDER BY ?personLabel ?person GROUP BY } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?archive P485:wdt ?person . Q5:wd P31:wdt ?person { WHERE )?count AS )?archive(COUNT( ?personLabel ?person SELECT try it!2. Return a list of institutions ranked in order of largest to smallest number of peoples' papers listed in Wikidata: )?count(DESC ORDER BY ?archiveLabel ?archive GROUP BY } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?archive P485:wdt ?person . Q5:wd P31:wdt ?person { WHERE )?count AS )?person(COUNT( ?archiveLabel ?archive SELECT #defaultView:BubbleChart 3. Return a list of items in Wikidata that have a SNAC id: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?value P3430:wdt ?item { WHERE ?value ?itemLabel SELECT #Items that have an ID from the Social Networks Archival Contex project 4. Return a list of people whose papers are held at the Beinecke along with the geocoordinates of their birthplaces plotted on a map: } } ."en" language:wikibase serviceParam:bd { label:wikibase SERVICE } .?lon geoLongitude:wikibase ?node .?lat geoLatitude:wikibase ?node .?node P625:psv ?statement .?statement P625:p ?birthplace { OPTIONAL } .?coord P625:wdt ?birthplace { OPTIONAL .?birthplace P19:wdt ?person .Q814779:wd P485:wdt ?person { WHERE ?lon ?lat ?coord ?birthplaceLabel ?personLabel SELECT http://www.wikidata.org/prop/statement/value/ :psv PREFIX #defaultView:Map 5. Return a bubble chart showing the awards received by people whose papers are at the Beinecke in order from largest number of award winners among the group to smallest number of award winners among the group: )?count(DESC ORDER BY ?awardLabel ?award GROUP BY } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?award P166:wdt ?person .Q814779:wd P485:wdt ?person { WHERE )?count AS )?person(COUNT( ?awardLabel ?award SELECT #defaultView:BubbleChart 6. Return a list of women whose papers are at the Beinecke and their occupations:

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   ?person ?personLabel ?occLabel

WHERE {

  ?person wdt:P21 wd:Q6581072 .
  ?person wdt:P485 wd:Q814779 .
  ?person wdt:P106 ?occ .

  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }

}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?occ") v1("?person"):::projected c7(["bd:serviceParam"]):::iri c4(["wd:Q814779"]):::iri c9(["en"]):::literal c2(["wd:Q6581072"]):::iri v1 --"wdt:P21"--> c2 v1 --"wdt:P485"--> c4 v1 --"wdt:P106"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end