query-be3b4363c53389d5614ae9cc397879e5
Give me all chemical elements!
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 ?ordnungszahl ?p ?pLabel ?symbol
WHERE
{
?p wdt:P31 wd:Q11344 .
?p wdt:P246 ?symbol .
?p wdt:P1086 ?ordnungszahl .
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} ORDER BY ASC(?ordnungszahl)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?ordnungszahl"):::projected
v2("?p"):::projected
v3("?symbol"):::projected
c6(["bd:serviceParam"]):::iri
c8(["de,en"]):::literal
c2(["wd:Q11344"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P246"--> v3
v2 --"wdt:P1086"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end