query-e11667aa2495a5f01129097da8a59d95
11:20, 3 July 2016 (UTC)) talk (Tobias1984-- 11:24, 3 July 2016 (UTC)) talk (Xaris333 It doesn't work. In the list there a lot of pages that do not have P31 --> Q476028. Tobias198411:32, 3 July 2016 (UTC)) talk (Tobias1984: I get 8296 results and all of them have those two statements. What item did you find that doesn't have it? --Xaris333@11:46, 3 July 2016 (UTC)) talk (Xaris333Οκ, its working. Many thanks! Note that also this:
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#>
SELECT ?item ?itemLabel
WHERE
{
?item wdt:P31 wd:Q476028 .
?item wdt:P571 []
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
a1((" "))
c2(["wd:Q476028"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P571"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end