query-dfbec7b84505d8e63613e25c1a722cbe

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?entity ?entityLabel ?entityDescription ?prop ?propLabel
WHERE
{
  ?entity rdfs:label "Kobbholmen"@en .
  ?entity ?claim ?statement .
  ?prop wikibase:claim ?claim .
  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; v2("?claim") v1("?entity"):::projected v4("?prop"):::projected v3("?statement") c5(["bd:serviceParam"]):::iri c2([sKobbholmen^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal c7(["en"]):::literal v1 --"rdfs:label"--> c2 v1 -->v2--> v3 v4 --"wikibase:claim"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end