query-37b02238126f59fde9f9c6346f35e788
Liste aller Konferenzen und ihrer URLs
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 ?conference ?conferenceLabel ?shortname ?url
{
?conference wdt:P31 wd:Q2020153 .
?conference wdt:P1813 ?shortname .
?conference wdt:P856 ?url .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de" }
} ORDER BY ?shortname
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?conference"):::projected
v1("?shortname"):::projected
v3("?url"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q2020153"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en,de"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P1813"--> v1
v2 --"wdt:P856"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end