query-e4dcd7160cd232329c9c86ee61e4c14d

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?prop ?propLabel ?value ?valueLabel ?st
WHERE
{
  ?st prov:wasDerivedFrom/pr:P143 wd:Q1590879 .

  ?item ?p ?st .
  ?prop wikibase:claim ?p ; wikibase:statementProperty ?ps .
  ?st ?ps ?value 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v3("?p") v4("?prop"):::projected v5("?ps") v1("?st"):::projected v6("?value"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c3(["wd:Q1590879"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"prov:wasDerivedFrom"--> a1 a1 --"pr:P143"--> c3 v2 -->v3--> v1 v4 --"wikibase:claim"--> v3 v4 --"wikibase:statementProperty"--> v5 v1 -->v5--> v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end