query-dfbec7b84505d8e63613e25c1a722cbe
TODO
Use at
- https://query.wikidata.org/sparql
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
- https://www.wikidata.org/wiki/User:Pmt
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2022/01
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