query-3cd9231174bd07265288767870615f90

rq turtle/ttl

title:ISBN13 version SELECT ?item ?itemLabel ?isbn13 ?title ?published WHERE { VALUES ?isbn13 { "978-2-35087-015-1" "978-1-167-74271-2" "978-2-909478-14-2" } ?item wdt:P212 ?isbn13. OPTIONAL {?item wdt:P577 ?published.} OPTIONAL {?item wdt:P1476 ?title.} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:ISBN13 version
SELECT ?item ?itemLabel ?isbn13 ?title ?published
WHERE 
{
  VALUES ?isbn13 {
    "978-2-35087-015-1"
    "978-1-167-74271-2"
    "978-2-909478-14-2"
  }
  ?item wdt:P212 ?isbn13.
  OPTIONAL {?item wdt:P577 ?published.}
  OPTIONAL {?item wdt:P1476 ?title.}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?isbn13"):::projected v2("?item"):::projected v3("?published"):::projected v4("?title"):::projected c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,fr,en"]):::literal bind0[/VALUES ?isbn13/] bind0-->v1 bind00(["978-2-35087-015-1"]) bind00 --> bind0 bind01(["978-1-167-74271-2"]) bind01 --> bind0 bind02(["978-2-909478-14-2"]) bind02 --> bind0 v2 --"wdt:P212"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P577".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1476".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end