query-ee8a2e80799021f88906eeb090559f5a
Fill DOI from old AltmetricOk, I see that Dirac has fixed most values to be equal to the DOI. I fixed some more (and the property examples) and now we have almost no discrepancies (I checked these cases, they are valid):
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
select * {
?x wdt:P5530 ?alt; wdt:P356 ?doi
filter(?alt!=?doi)
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?alt"):::projected
v2("?doi"):::projected
v3("?x"):::projected
f0[["?alt != ?doi"]]
f0 --> v1
f0 --> v2
v3 --"wdt:P5530"--> v1
v3 --"wdt:P356"--> v2