Wix Blocks: About Collections
3 min read
Wix Blocks is currently open to a limited number of users.
Wix Blocks enables you to add collections (databases) to your app. Managing collections in Blocks is similar to managing collections in Wix sites. But, there are a few points that are very different - check them out in this article.
Tip
Pay attention to collection permissions and their security guidelines.
A Blocks collection is a placeholder
The most important thing to understand about a Blocks collection is that it is not supposed to hold data. It's a placeholder for the data of any site it's installed in. When you create a collection in Blocks, you only define the structure of the data and make it possible to refer to it in the app's code. But the data itself will change from site to site.
This is because a Blocks collection can be used on multiple sites - even thousands of them. These sites can be very different from each other and have their own databases. Think about a collection that holds customer information. Every site can have a list of their own customers, and your widget can apply to all of them.
When you change the structure of a collection in Blocks, it impacts any site it's installed on. So work with caution and don't make changes that can break sites.
Note
Blocks collections are counted under the CMS Item and Collection limit.
To add a collection to your app
- Click the Database
icon in your app's left menu.
- Click New Collection.
- Create a unique namespace for you app, if you haven't already done it. Make the namespace meaningful and clear (if you haven't named your app yet, you will be triggered to name it now).
- Name your collection.
- Define the structure of your collection in the CMS.
- Optional - add test items to your collection. Remember that they are only placeholders. The actual data won't be imported to a site.
See your collection in the editor
When you import a Blocks app that has a collection to your site, the collection will appear in the Content Collections section in the Databases
panel. Your app namespace will appear next to this collection, to indicate that it's from Blocks. From now on you can handle your collection like in any other Wix site.

Important
If you delete the app from the site, the collection will be deleted as well.
Access the collection data through code
First, write this import statement in your widget code:
1import wixData from 'wix-data';
To access your collection and perform various actions, query, insert, etc, use the following syntax with any wix-data API. For example, this is how you query a collection (learn more about your namespace):
1wixData.query("<yourAppNamespace>/<yourCollectionName>")
2 .find()
3 .then( (results) => {
4 //your code using the "results";
5 });
Learn more about working with the Wix Data API