Ask a question to get started
Enter to send•Shift+Enter new line
List and filter namespaces in the store. Used to explore data organization and navigate the namespace hierarchy.
listNamespaces(options: __type = {}): Promise<string[][]>
options
__type
{}
Options for listing namespaces
// List all namespaces under "documents" await store.listNamespaces({ prefix: ["documents"], maxDepth: 2 }); // List namespaces ending with "v1" await store.listNamespaces({ suffix: ["v1"], limit: 50 });