collections_info
The function collections_info() lists the existing collections, their creation time and size in the form of a dictionary.
Example
print(hyperspace_client.collections_info())Object info = client.collectionsInfo();
System.out.println(new Gson().toJson(info));const {info } = await hyperspaceClient.collectionsInfo();
console.log(info );Response
A status message similar to the following should appear –
{'collections': {'Movies': {'creation_time': '2023-12-06T09:52:12Z', 'size': 40951}, 'online_products': {'creation_time': '2023-12-03T16:15:36Z', 'size': 5034174}}}
Last updated