Get NoSQL Table Instance

Catalyst NoSQL enables you to fetch an empty table instance of a NoSQL table. You can then use this instance to refer to that table and perform all supported table operations. This process will not fire a server-side call.

You can get an instance of your NoSQL table by referring to the table’s name as shown in this section. The nosql reference used in the code snippets below is the component instance created earlier.

    
copy
table = nosql.get_table('employees') # Create a table instance with the table name

Last Updated 2025-06-20 16:21:48 +0530 +0530

ON THIS PAGE