Skip to content

Stores

All of your StatelyDB data lives in a Store. You can think of a Store as a container for all the data related to a particular application or project. It’s similar to a “database” in other database applications. Stores can contain multiple types of data - they are not organized into separate “tables” or “collections”. You should generally have one store per application, which holds all of the different kinds of data that application needs. You can have more than one Store in your Organization.

You can have one Store for your development environment, another for your production environment, and yet another for your testing environment. Each Store can have its own set of data.

Each Store has a Schema associated with it, and multiple Stores can all share the same Schema. The Schema defines what Item Types are valid to have in the Store.