in src/main/java/org/apache/sling/graphql/helpers/lazyloading/LazyLoadingMap.java [68:77]
public boolean equals(Object o) {
if(!(o instanceof LazyLoadingMap)) {
return false;
}
final LazyLoadingMap<?,?> other = (LazyLoadingMap<?,?>)o;
// Equality seems complicated to compute without this
computeAll();
return super.equals(other);
}