Earlier quoted context omitted.
> FaunaDB a perfect choice for developers who don’t know much about databases And, from the Fauna docs: > Related documents in FaunaDB are stored within classes (also known as collections), which are similar to tables in relational databases, except that the different items in the class are not all required to have the same fields. Typically, classes correspond to types in your application, for example, blog posts, a…
Hey @vosper, thanks for your feedback! To clarify, what we mean by simplicity is making databases as simple to work with as using an API. An example of this is native GraphQL support within FaunaDB. We're continuing to make our database concepts like Collections easier to use and understand. I've made a note to clarify the blog post you are referencing. Collections come from a NoSQL approach, and allow users to chang…
Thing is, there's always a schema. Code always expects data to look a particular way. Whether it's written down and enforced by the DB or not will have a great influence on your ability to reason about your system and make changes down the line.
This sounds like the same mistakes of Mongo all over again. Databases that don't require and enforce schemas trade a degree of early flexibility and development speed for a future of confusion, hacks and workarounds, and lower velocity.
Most people who make this tradeoff aren't aware they're making it. The rest of us use RDBMS.
(I get that you work for the company and I don't expect this comment to change anything - except hopefully the mind of someone contemplating using a no-schema database)