Un-depending on MongoDB

Hi all,
TL;DR I have a Meteor app that is only Meteor pubsub, and operationally fully decoupled from Mongo (by design, it could be, but it’s not in this demo). It’s not Apollo - but I’d like to know people’s thoughts on any similarity or differences.

https://github.com/deanius/meteor-trivia

In it, because of Redux, and the way its store inverts dependencies, all of its business logic is in pure reducer functions - no Mongo {$set: {}} object creation or imperative updates!

Again - maybe similar to some goals of the Apollo project (though no GraphQL)… Let me know your thoughts…

Dean