query-6db92afe41afd74f92a515bfd99a2d8f

rq turtle/ttl

title:Count of manuscripts by material used SELECT ?material ?l ?d (COUNT(DISTINCT ?q) AS ?mcount) WHERE { ?q (wdt:P31/wdt:P279*) wd:Q87167. ?q p:P195 ?s. ?s ps:P195 ?collection . MINUS {?s pq:P582 []}. MINUS { ?s ps:P195 wd:Q1322278 } ?q wdt:P186 ?material SERVICE wikibase:label { bd:serviceParam wikibase:language "en". ?material rdfs:label ?l; schema:description ?d } } GROUP BY ?material ?l ?d ORDER BY DESC(?mcount)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Count of manuscripts by material used
SELECT ?material ?l ?d (COUNT(DISTINCT ?q) AS ?mcount)
WHERE {
?q (wdt:P31/wdt:P279*) wd:Q87167.
?q p:P195 ?s. ?s ps:P195 ?collection . MINUS {?s pq:P582 []}.
MINUS { ?s ps:P195 wd:Q1322278 }
?q wdt:P186 ?material
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en".
    ?material rdfs:label ?l; schema:description ?d
  }
}
GROUP BY ?material ?l ?d
ORDER BY DESC(?mcount)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?collection") v7("?d"):::projected v6("?l"):::projected v5("?material"):::projected v8("?mcount") v2("?q"):::projected v3("?s") a2((" ")) a1((" ")) c7(["wd:Q1322278"]):::iri c12(["en"]):::literal c3(["wd:Q87167"]):::iri c10(["bd:serviceParam"]):::iri v2 --"p:direct/P31"--> a1 a1 --"p:direct/P279"--> c3 v2 --"p:P195"--> v3 v3 --"p:statement/P195"--> v4 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v3 --"p:qualifier/P582"--> a2 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v3 --"p:statement/P195"--> c7 end v2 --"p:direct/P186"--> v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 v5 --"rdfs:label"--> v6 v5 --"schema:description"--> v7 end bind3[/"count(?q)"/] v2 --o bind3 bind3 --as--o v8