query-49d5109d8c60ba15fece93626d3d3efd
Give me entities that have a IUPAC Goldbook identifier!
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?p ?pLabel ?qLabel
WHERE
{
?p wdt:P4732 ?q .
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} ORDER BY ASC(?pLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?p"):::projected
v1("?pLabel"):::projected
v3("?q")
c3(["bd:serviceParam"]):::iri
c5(["de,en"]):::literal
v2 --"wdt:P4732"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end