meilisearch / meilisearch/meilisearch-rust
Add the `/export` api
Open
Nobody has claimed this yet.
- Dominant language
- Rust
- Stars
- 434
- Forks
- 114
- PR merge metrics
- No merged PRs in 30d
Description
Description
The export api has not been added to the sdk yet
Basic example
let export_task = ExportQuery::new(&client)
.with_url("TARGET_URL")
.with_api_key("API_KEY")
.with_payload_size("50MiB")
.execute()
.await()
.unwrap();
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the Meilisearch /export API documentation linked in the issue, then find the SDK entry point for query types such as ExportQuery. Use the provided example to understand the expected URL, API key, and payload-size options. Done means the Rust SDK exposes /export with those options and can execute the request.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- api
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 55/100