query-fa67442274f741d9687a949f9e4c622b

rq turtle/ttl

Propertiesinstance of (P31)

Use at

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 ?work ?workLabel ?evidence
WHERE {
  ?evidence schema:about ?work.
  ?work wdt:P31 wd:Q571.
  FILTER regex(STR(?evidence), 'https://en.wikipedia.org/wiki/')
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?workLabel
LIMIT 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?evidence"):::projected v3("?work"):::projected v1("?workLabel"):::projected c6(["bd:serviceParam"]):::iri c8(["en"]):::literal c4(["wd:Q571"]):::iri 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