I am not getting all the rows from my Datastax Astra DB where I have uploaded my data. I am using python http_methods
for requesting data. Here is my code-
respond = astra_client.request(
method=http_methods.GET,
path=f"/api/rest/v2/keyspaces/{ASTRA_DB_KEYSPACE}/{astra_db_collection}/rows")
This method is only getting me 100 rows, while there are 150 rows in my table. How can I solve this ?