(collectionId: string, params: object)
| 20 | return await request.get(`${project_base_url}/collections/${collectionId}/chunks?${str}`) |
| 21 | } |
| 22 | const createRecord = async (collectionId: string, params: object) => { |
| 23 | const project_base_url = `api/v1` |
| 24 | return await request.post(`${project_base_url}/collections/${collectionId}/chunks`, params) |
| 25 | } |
| 26 | const deleteRecord = async (collectionId: string, id: string) => { |
| 27 | const project_base_url = `api/v1` |
| 28 | return await request.delete(`${project_base_url}/collections/${collectionId}/chunks/${id}`) |
no outgoing calls
no test coverage detected