query-debec4a08d2fde0db0a76f3c37b8fc1a
TODO
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 bd: <http://www.bigdata.com/rdf#>
#defaultView:ImageGrid
SELECT DISTINCT ?itemLabel ?item ?film WHERE {
?item wdt:P31/wdt:P279* wd:Q11424; wdt:P10 ?film; wikibase:sitelinks ?linkcount .
FILTER(REGEX(STR(?film), '[Tt]railer') = false) .
SERVICE wikibase:label {bd:serviceParam wikibase:language 'en' }
} ORDER BY DESC (?linkcount) LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?film"):::projected
v3("?item"):::projected
v1("?linkcount")
a1((" "))
c9(["bd:serviceParam"]):::iri
c11(["en"]):::literal
c5(["wd:Q11424"]):::iri
f0[["regex(str(?film),'#91;Tt#93;railer') = 'false^^xsd:boolean'"]]
f0 --> v2
v3 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
v3 --"wdt:P10"--> v2
v3 --"wikibase:sitelinks"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end