query-1f4af69412488b2b11ef8f5c0665d5ed

rq turtle/ttl

TODO

Use at

PREFIX mwapi: <http://wikiba.se/ontology#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?file ?title (GROUP_CONCAT(DISTINCT ?mi_label;separator="; ") as ?miLabel) (GROUP_CONCAT(DISTINCT ?en_label;separator="; ") as ?enLabel)


WHERE {

   {
  SELECT ?file ?title ?depicts WHERE {
     {
  SELECT * WHERE {
    SERVICE wikibase:mwapi
    {
      bd:serviceParam wikibase:api "Generator" .
      bd:serviceParam wikibase:endpoint "commons.wikimedia.org" .
      bd:serviceParam mwapi:gcmtitle "Category:1930s photographs in Auckland Museum" .
      bd:serviceParam mwapi:generator "categorymembers" .
      bd:serviceParam mwapi:gcmtype "file" .
      bd:serviceParam mwapi:gcmlimit "max" .
      ?title wikibase:apiOutput mwapi:title .
      ?pageid wikibase:apiOutput "@pageid" .
    }
    BIND (URI(CONCAT('https://commons.wikimedia.org/entity/M', ?pageid)) AS ?file)
  }
}.
    ?file wdt:P180 ?depicts .
  }
}.
  SERVICE <https://query.wikidata.org/sparql> {
      OPTIONAL {?depicts rdfs:label ?mi_label . filter(lang(?mi_label) = "mi")}
      OPTIONAL {?depicts rdfs:label ?en_label . filter(lang(?en_label) = "en")}    

  }
} group by ?file ?title
LIMIT 50

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?depicts") v8("?enLabel") v5("?en_label"):::projected v3("?file"):::projected v7("?miLabel") v6("?mi_label"):::projected v2("?pageid") v1("?title"):::projected c8(["Category:1930s photographs in Auckland Museum"]):::literal c14(["max"]):::literal c10(["categorymembers"]):::literal c2(["bd:serviceParam"]):::iri c12(["file"]):::literal c16(["mwapi:title"]):::iri c6(["commons.wikimedia.org"]):::literal c17(["@pageid"]):::literal c4(["Generator"]):::literal subgraph s1["http://wikiba.se/ontology#mwapi"] style s1 stroke-width:4px; c2 --"mwapi:api"--> c4 c2 --"mwapi:endpoint"--> c6 c2 --"mwapi:gcmtitle"--> c8 c2 --"mwapi:generator"--> c10 c2 --"mwapi:gcmtype"--> c12 c2 --"mwapi:gcmlimit"--> c14 v1 --"mwapi:apiOutput"--> c16 v2 --"mwapi:apiOutput"--> c17 end bind0[/"concat('https://commons.wikimedia.org/entity/M',?pageid)"/] v2 --o bind0 bind0 --as--o v3 v3 --"wdt:P180"--> v4 subgraph s2["https://query.wikidata.org/sparql"] style s2 stroke-width:4px; subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v4 -."rdfs:label".-> v6 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."rdfs:label".-> v5 end end bind3[/"?mi_label"/] v6 --o bind3 bind3 --as--o v7 bind4[/"?en_label"/] v5 --o bind4 bind4 --as--o v8