query-a44b96caba92a9b9a4c0eca5ef391319
Megabyte range scholarly article items, review articles with CC license SELECT ?item ?statementcount ?itemLabel WHERE {?item wdt:P31 wd:Q13442814; wdt:P31 wd:Q7318358; wdt:P275 [ ]; wikibase:statements ?statementcount. FILTER (?statementcount > 600 ) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
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#>
#Megabyte range scholarly article items, review articles with CC license
SELECT ?item ?statementcount ?itemLabel
WHERE {?item wdt:P31 wd:Q13442814;
wdt:P31 wd:Q7318358;
wdt:P275 [ ];
wikibase:statements ?statementcount.
FILTER (?statementcount > 600 )
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?statementcount"):::projected
a1((" "))
c3(["wd:Q13442814"]):::iri
c8(["bd:serviceParam"]):::iri
c4(["wd:Q7318358"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?statementcount > '600^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"wdt:P31"--> c4
v2 --"wdt:P275"--> a1
v2 --"wikibase:statements"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end