query-29f75195487c170d54072c34440a150b

rq turtle/ttl

TODO

Use at

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 ?elemento ?elementoLabel ?simbolo ?numero
WHERE
{
  ?elemento wdt:P31 wd:Q11344;
           wdt:P246 ?simbolo;
           wdt:P1086 ?numero.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
ORDER BY ?numero

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?elemento"):::projected v1("?numero"):::projected v3("?simbolo"):::projected c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;"]):::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