query-3021a112015138c9034c5a421386b828

rq turtle/ttl

title: Noms de Céret dans plusieurs écritures/langues (trié par occurrence) / Names of Céret in multiple scripts/languages (order by weight) SELECT ?word (COUNT(?label) AS ?weight) WHERE { wd:Q6643 rdfs:label ?label . BIND ( STR(?label) AS ?word ) } GROUP BY ?word ORDER BY DESC(?weight)

Use at

PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#title: Noms de Céret dans plusieurs écritures/langues (trié par occurrence) / Names of Céret in multiple scripts/languages (order by weight)
SELECT ?word (COUNT(?label) AS ?weight) WHERE {
  wd:Q6643 rdfs:label ?label .
  BIND ( STR(?label) AS ?word )
}
GROUP BY ?word
ORDER BY DESC(?weight)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?label"):::projected v4("?weight") v3("?word"):::projected c1(["wd:Q6643"]):::iri c1 --"rdfs:label"--> v2 bind0[/"str(?label)"/] v2 --o bind0 bind0 --as--o v3 bind2[/"count(?label)"/] v2 --o bind2 bind2 --as--o v4