query-cd01b7bfee2faeb63913cfdebeed29eb
TODO
Use at
- https://query.wikidata.org/sparql
SELECT ?isbn13
WHERE
{
VALUES ?isbn13 {
"978-2-35087-015-1"
"978-1-167-74271-2"
"978-2-909478-14-2"
"999-9-999999-99-9"
}
filter not exists {?item ?predicate ?isbn13.}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?isbn13"):::projected
v1("?item")
v2("?predicate")
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 -->e0v2--> e0v3
e0v3("?isbn13"):::projected
e0v1("?item"):::projected
e0v2("?predicate"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> v2
f0 --> v4
v1 -->v2--> v4
bind1[/VALUES ?isbn13/]
bind1-->v4
bind10(["978-2-35087-015-1"])
bind10 --> bind1
bind11(["978-1-167-74271-2"])
bind11 --> bind1
bind12(["978-2-909478-14-2"])
bind12 --> bind1
bind13(["999-9-999999-99-9"])
bind13 --> bind1