NoSQL
Catalyst NoSQL is a fully managed non-relational, NoSQL data storage feature that enables you to store the semi-structured, unstructured, and disparate data of your applications. Catalyst supports document-type data storage in the key-value pair based JSON format.
The Catalyst NoSQL Node.js SDK package enables you to perform CRUD data operations on your NoSQL tables in your project. You can fetch the metadata of your NoSQL tables, create NoSQL items of various supported data types, and insert, update, fetch, or delete items in a specific table. You can also query tables or indexes of tables by specifying query conditions.
Early Access Note
NoSQL is currently only available in the early access mode. You will need to install the beta version of the Node.js SDK. The details are given below:
-
VERSION: v3.0.0-beta.1
Installation procedure:
You can install the beta version of Node.js SDK with this command below. Refer to this help doc for the installation steps.
copynpm install zcatalyst-sdk-node@3.0.0-beta.1
Create a NoSQL Instance
A component instance is an object that can be used to access the pre-defined configurations specific to a particular component.
You can create a NoSQL object to perform SDK operations in Node.js as shown below. This will not fire a server-side call. We will refer to this nosql instance in various code snippets of working with NoSQL.
The app reference used to create the NoSQL instance is the Node.js object returned as the response during the SDK initialization.
copy// Create a NoSQL instance const nosql = app.nosql();
Last Updated 2025-06-20 16:21:48 +0530 +0530
Yes
No
Send your feedback to us