query-19a795e48cb3050062027b5876dac31a
Complete Google Books ID (P675) from Internet Archive ID (P724). (P724)Internet Archive ID from (P675)Google Books ID Many books in the Internet Archive come from Google Books (generally indicated as source). Accordingly, we could probably complete 11:25, 18 July 2020 (UTC) JuraMaybe the inverse could be done too (find IA based on GB). --- 09:41, 5 November 2020 (UTC)) talk (Vojtěch Dostál: Can you give an example of a book item which could be completed like that? Jura1@
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?value
{
?item wdt:P724 ?value .
FILTER ( contains(?value, "goog") )
FILTER NOT EXISTS { ?item wdt:P675 [] }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?value"):::projected
a1((" "))
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wdt:P675"--> e0a1
e0v1("?item"):::projected
e0a1((" ")):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> a1
v1 --"wdt:P675"--> a1
f1[["contains(?value,'goog')"]]
f1 --> v2
v1 --"wdt:P724"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end