query-d013871c896e2d87bd858b79deaaef2d
Add missing elements 17 of 1000 were missing). These could be added by downloading the entire catalogue comparing it with what's on Wikidata.https://tools.wmflabs.org/mix-n-match/#/sync/3461Some of the entries for "Multiple external IDs for a single Wikidata item in this catalog" on the "Manual sync catalogue" (sample page Samples: Query to compare: https://tools.wmflabs.org/mix-n-match/#/download/3461Download page: 17 of 1000 were missing, ~40 multiple external idshttps://tools.wmflabs.org/mix-n-match/#/sync/3461"Manual sync catalogue" page:
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 ?itemDescription ?obit ?obitLabel ?obitDescription ?value
WHERE
{
?item wdt:P2536 ?value .
BIND( URI ( CONCAT("http://www.wikidata.org/entity/", ?value)) as ?obit)
OPTIONAL { ?obit wdt:P921 ?item }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en"}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v3("?obit"):::projected
v2("?value"):::projected
c4(["bd:serviceParam"]):::iri
c6(["en"]):::literal
v1 --"wdt:P2536"--> v2
bind0[/"concat('http://www.wikidata.org/entity/',?value)"/]
v2 --o bind0
bind0 --as--o v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P921".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end