query-e3b093c02b031611c7d4937be7fec1c7
Gib mir alle Organisationen, die am Thema FDM interessiert sind
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 ?itemLabel
WHERE {
?item wdt:P31/wdt:P279* wd:Q43229 .
?item wdt:P2650 wd:Q30089794 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en" }
} ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c5(["wd:Q30089794"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal
c3(["wd:Q43229"]):::iri
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P2650"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end