query-cf07a75b52dacbd40496949187489a47
Body shapeBody shapesBody types(Q1072278)human body shape Query uninteresting; returns male and female shapes.... (Q12964805)male body shape (Q3543843)female body shape
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 ?shape ?shapeLabel
{
# find a particle
?shape wdt:P279+ wd:Q1072278 .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
} ORDER BY ?shapeLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?shape"):::projected
v1("?shapeLabel"):::projected
c2(["wd:Q1072278"]):::iri
c4(["bd:serviceParam"]):::iri
c6(["en"]):::literal
v2 --"wdt:P279"--> c2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end