query-1c86623d6340cb409780b69b291c3ab3
zufällige Datensätze mit mehr als 20 Sprachartikeln (sitelinks) SELECT ?item ?itemLabel ?sitelinks ?random WHERE { #Minimum sitelinks (Sprachen) ?item wikibase:sitelinks ?sitelinks . hint:Prior hint:rangeSafe true . FILTER (?sitelinks > 20 )
#Random stuff BIND(SHA512(CONCAT(STR(RAND()), STR(?item))) AS ?random) . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE], en" . } } LIMIT 100
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
# zufällige Datensätze mit mehr als 20 Sprachartikeln (sitelinks)
SELECT ?item ?itemLabel ?sitelinks ?random
WHERE
{
#Minimum sitelinks (Sprachen)
?item wikibase:sitelinks ?sitelinks .
FILTER (?sitelinks > 20 )
#Random stuff
BIND(SHA512(CONCAT(STR(RAND()), STR(?item))) AS ?random) .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE], en" . }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v3("?random"):::projected
v1("?sitelinks"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;, en"]):::literal
f0[["?sitelinks > '20^^xsd:integer'"]]
f0 --> v1
v2 --"wikibase:sitelinks"--> v1
bind1[/"SHA512(concat(str(RAND()),str(?item)))"/]
v2 --o bind1
bind1 --as--o v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end