query-2bce94efd3bc701e7ac83f3bc8d9ab18

rq turtle/ttl

Software on the Internet Archive SELECT ?item ?itemLabel ?archiveID ?image { ?item wdt:P724 ?archiveID . ?item wdt:P31/wdt:P279* wd:Q7397. OPTIONAL {?item wdt:P18 ?image}. SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" }
}

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#>
#Software on the Internet Archive
SELECT ?item ?itemLabel ?archiveID ?image
{
    ?item wdt:P724 ?archiveID .
    ?item wdt:P31/wdt:P279* wd:Q7397.
    OPTIONAL {?item wdt:P18 ?image}.
    SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en"  }    
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?archiveID"):::projected v3("?image"):::projected v1("?item"):::projected a1((" ")) c4(["wd:Q7397"]):::iri c7(["bd:serviceParam"]):::iri c9(["en,en"]):::literal v1 --"wdt:P724"--> v2 v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end