Hello, Im running into a problem. Im using Laravel...
# community-help
p
Hello, Im running into a problem. Im using Laravel Scout with Typsense and got a problem, the collection exists and has documents but when i do curl -X GET http://localhost:8108/collections/products_index/documents -H "X-TYPESENSE-API-KEY: ..." i get { "message": "Not Found"} When i do curl -X GET http://localhost:8108/collections/products_index -H "X-TYPESENSE-API-KEY: ..." it says there are 3528 documents
This does work curl -X GET "http://localhost:8108/collections/products_index/documents/search?q=*&query_by=name" -H "X-TYPESENSE-API-KEY: ..." and Laravel Scout also scout:import works, but when i try to get the data with the search method it also gives 404 not found.
Somehow got it to work... don't really know how, tried alot of things.
j
GET http://localhost:8108/collections/products_index/documents
This is not a valid endpoint though
If you're trying to export all documents you want to use this endpoint:
Copy code
GET <http://localhost:8108/collections/products_index/documents/export>