query-ab5c1f53488c2a9b30416fa82b5c11db
What are the most cited TTRPG ?
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT (COUNT(?_citing) AS ?count) (SAMPLE(?_citingLabel) AS ?citingLabel) WHERE {
?ttrpg wdt:P31 wd:Q1643932.
?ttrpg wdt:P2860 ?_citing.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?_citing rdfs:label ?_citingLabel.}
}
GROUP BY ?_citing
HAVING (?count > 1)
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?_citing"):::projected
v4("?_citingLabel"):::projected
v5("?citingLabel")
v5("?count")
v2("?ttrpg")
c6(["bd:serviceParam"]):::iri
c3(["wd:Q1643932"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?count > '1^^xsd:integer'"]]
f0 --> v5
v2 --"wdt:P31"--> c3
v2 --"wdt:P2860"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
v3 --"rdfs:label"--> v4
end
bind3[/"count(?_citing)"/]
v3 --o bind3
bind3 --as--o v5
bind4[/"sample(?_citingLabel)"/]
v4 --o bind4
bind4 --as--o v5