query-6bc31e3547cde8bd82f59def96977641
Propertiesinstance of (P31)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema: <http://schema.org/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?edition ?editionLabel ?evidence
WHERE {
?evidence schema:about ?edition.
?edition wdt:P31 wd:Q3331189.
FILTER regex(STR(?evidence), 'https://en.wikipedia.org/wiki/')
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?editionLabel
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?edition"):::projected
v1("?editionLabel"):::projected
v2("?evidence"):::projected
c6(["bd:serviceParam"]):::iri
c4(["wd:Q3331189"]):::iri
c8(["en"]):::literal
f0[["regex(str(?evidence),'https://en.wikipedia.org/wiki/')"]]
f0 --> v2
v2 --"schema:about"--> v3
v3 --"wdt:P31"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end