query-167d6db860bbe4cdc0fa9f881a2607d7

rq turtle/ttl

title:ISBN10 and ISBN13 combined version SELECT ?item ?itemLabel ?isbn ?title ?published WHERE { VALUES ?isbn { "0-521-22151-X" "0-521-29366-9" "978-2-35087-015-1" "978-1-167-74271-2" "978-2-909478-14-2" } {?item wdt:P957 ?isbn.} UNION {?item wdt:P212 ?isbn.} 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:ISBN10 and ISBN13 combined version
SELECT ?item ?itemLabel ?isbn ?title ?published
WHERE 
{
  VALUES ?isbn {
    "0-521-22151-X"
    "0-521-29366-9"
    "978-2-35087-015-1"
    "978-1-167-74271-2"
    "978-2-909478-14-2"
  }
  {?item wdt:P957 ?isbn.}
  UNION
  {?item wdt:P212 ?isbn.}
  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("?isbn"):::projected v2("?item"):::projected v3("?published"):::projected v4("?title"):::projected c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,fr,en"]):::literal bind0[/VALUES ?isbn/] bind0-->v1 bind00(["0-521-22151-X"]) bind00 --> bind0 bind01(["0-521-29366-9"]) bind01 --> bind0 bind02(["978-2-35087-015-1"]) bind02 --> bind0 bind03(["978-1-167-74271-2"]) bind03 --> bind0 bind04(["978-2-909478-14-2"]) bind04 --> bind0 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P212"--> v1 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P957"--> v1 end union0r <== or ==> union0l end 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; c6 --"wikibase:language"--> c8 end