wikidata.js's reconcile method runs both a typed and an untyped query to fetch QIDs for one or more items. As described in #150:
given that:
a batch reconciliation will use reconcile with options.partial = false (see Be explicit that approximate matches will be ignored in batch QID fetching #90),
untyped-query results will be forced to non-exact matches, and
non-exact matches will be ignored if options.partial === false.
Consider not doing the untyped queries at all if options.partial === false.
wikidata.js
'sreconcile
method runs both a typed and an untyped query to fetch QIDs for one or more items. As described in #150:Consider not doing the untyped queries at all if
options.partial === false
.