We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently when loading bulk items the results return match the following:
{ "ok": true, "results": [ { "index": { "_index": "app-movies-ckutqvg7y002q07l7h2qd5gmthyper63default", "_type": "_doc", "_id": "1", "_version": 2, "result": "updated", "_shards": { "total": 2, "successful": 2, "failed": 0 }, "_seq_no": 1, "_primary_term": 1, "status": 200 } }, { "index": { "_index": "app-movies-ckutqvg7y002q07l7h2qd5gmthyper63default", "_type": "_doc", "_id": "2", "_version": 2, "result": "updated", "_shards": { "total": 2, "successful": 2, "failed": 0 }, "_seq_no": 1, "_primary_term": 1, "status": 200 } } ] }
And it should match the following:
{ ok: true, results: [{"id": "1", "ok": true}, {"id": "2", "ok": true}] }
The text was updated successfully, but these errors were encountered:
fix: return ok:true for each item in bulk results #8
50a7c51
fix: updated tests and added lint and fmt and fixed workflow #8
a52d7f3
Merge pull request #10 from hyper63/twilson63/bug-bulk-command-should-8
1b12e3d
twilson63
No branches or pull requests
Currently when loading bulk items the results return match the following:
And it should match the following:
The text was updated successfully, but these errors were encountered: