query-36a85dce7bf4549664e8c3ef8489fecb
TODO
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 pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?item ?itemLabel ?formula where {
?item p:P7235 / pq:P9758 wd:Q11423 . #mass
?item p:P7235 / pq:P9758 wd:Q11379 . #energy
?item wdt:P2534 ?formula .
service wikibase:label { bd:serviceParam wikibase:language "en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?formula"):::projected
v1("?item"):::projected
a1((" "))
a2((" "))
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c3(["wd:Q11423"]):::iri
c4(["wd:Q11379"]):::iri
v1 --"p:P7235"--> a1
a1 --"p:qualifier/P9758"--> c3
v1 --"p:P7235"--> a2
a2 --"p:qualifier/P9758"--> c4
v1 --"p:direct/P2534"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end