Skip to content

Commit 75ae455

Browse files
committed
graphql movie demo: Increased limit to 1000
1 parent 5e58de8 commit 75ae455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/demos/movies/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ <h1 style="display: inline; margin-right: 20px;">Movie Browser</h1>
143143
wdt: "http://www.wikidata.org/prop/direct/"
144144
})
145145
{
146-
Movies(limit: 100) @pattern(of: "SELECT ?s { ?s wdt:P31 wd:Q11424 . FILTER (exists { ?s rdfs:label ?l . FILTER(langMatches(lang(?l), 'en')) FILTER(CONTAINS(LCASE(STR(?l)), LCASE('SEARCH_TERM'))) }) }") {
146+
Movies(limit: 1000) @pattern(of: "SELECT ?s { ?s wdt:P31 wd:Q11424 . FILTER (exists { ?s rdfs:label ?l . FILTER(langMatches(lang(?l), 'en')) FILTER(CONTAINS(LCASE(STR(?l)), LCASE('SEARCH_TERM'))) }) }") {
147147
label @one @pattern(of: "?s rdfs:label ?l. FILTER(LANG(?l) = 'en')")
148148
description @one @pattern(of: "?s schema:description ?l. FILTER(LANG(?l) = 'en')")
149149
depiction @one @pattern(of: "SELECT ?s ?o { ?s wdt:P18 ?o } ORDER BY ?o LIMIT 1")

0 commit comments

Comments
 (0)