query-98c19ddb9a2d9890fff20f4536d797ba

rq turtle/ttl

Firearms cartridges and which they are based on Firearms cartridges and which they are based on Cartouches d'armes à feu et armes pour lesquelles elles sont conçues Firearms cartridges and which they are based on Firearms cartridges and which they are based on Vuurwapenpatronen en waarop ze zijn gebaseerd Patroner till handeldvapen och vad de baseras på Firearms cartridges and which they are based on Firearms cartridges and which they are based on Firearms cartridges and which they are based on

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#>
#Show firearms cartridges and which they are based on
#defaultView:Graph
SELECT 
?item ?itemLabel ?image 
?other ?otherLabel ?image2
WHERE
{
    ?item  wdt:P279+ wd:Q37144 .   # cartridges
    ?item  wdt:P144    ?other  .   # if the cartridge is based on another
    OPTIONAL {
      ?item  wdt:P18     ?image  .   # grab image
      ?other wdt:P18     ?image2 .   # grab image
    }
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?image"):::projected v4("?image2"):::projected v1("?item"):::projected v2("?other"):::projected c6(["bd:serviceParam"]):::iri c2(["wd:Q37144"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P279"--> c2 v1 --"wdt:P144"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v3 v2 --"wdt:P18"--> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end