query-0fcff7e023506d29c63b7217e3ead34e
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?club ?clubLabel ?itemLabel {
wd:Q704091 wdt:P1923 ?club .
?item wdt:P106 wd:Q937857 .
?item wdt:P118 wd:Q82595 .
?item wdt:P54 ?club .
SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
}
ORDER BY DESC(?item)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?club"):::projected
v1("?item"):::projected
c1(["wd:Q704091"]):::iri
c11(["de"]):::literal
c9(["bd:serviceParam"]):::iri
c6(["wd:Q82595"]):::iri
c4(["wd:Q937857"]):::iri
c1 --"wdt:P1923"--> v2
v1 --"wdt:P106"--> c4
v1 --"wdt:P118"--> c6
v1 --"wdt:P54"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end