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
No description provided.
The text was updated successfully, but these errors were encountered:
feat: Add ability to delete multiple documents, using multiple ids (#196
8ffd2b5
) ### ISSUE: Resolves #164 Resolves #165 ### DESCRIPTION: Adds the ability to delete multiple documents, using multiple ids. We can now delete multiple documents using multiple dockeys (i.e. ids). For example: ``` mutation { delete_user(ids: ["bae-3a1a496e-24eb-5ae3-9c17-524c146a393e" , "bae-6a6482a8-24e1-5c73-a237-ca569e41507d"]) { KeyOfDeletedDocument: _key } } ``` Gives this on successful deletion of all documents: ``` { "data": [ { "KeyOfDeletedDocument": "bae-3a1a496e-24eb-5ae3-9c17-524c146a393e" }, { "KeyOfDeletedDocument": "bae-6a6482a8-24e1-5c73-a237-ca569e41507d" } ] } ``` ### COMMITS: * feat: Add implementation for deleting multiple documents. * test: Add tests for the multiple document deletion using multiple keys. * refactor: Split tests into seperate files for the deletion mutuation command. * fix: suppress linter error.
feat: Add ability to delete multiple documents, using multiple ids (s…
0e6a59e
…ourcenetwork#196) ### ISSUE: Resolves sourcenetwork#164 Resolves sourcenetwork#165 ### DESCRIPTION: Adds the ability to delete multiple documents, using multiple ids. We can now delete multiple documents using multiple dockeys (i.e. ids). For example: ``` mutation { delete_user(ids: ["bae-3a1a496e-24eb-5ae3-9c17-524c146a393e" , "bae-6a6482a8-24e1-5c73-a237-ca569e41507d"]) { KeyOfDeletedDocument: _key } } ``` Gives this on successful deletion of all documents: ``` { "data": [ { "KeyOfDeletedDocument": "bae-3a1a496e-24eb-5ae3-9c17-524c146a393e" }, { "KeyOfDeletedDocument": "bae-6a6482a8-24e1-5c73-a237-ca569e41507d" } ] } ``` ### COMMITS: * feat: Add implementation for deleting multiple documents. * test: Add tests for the multiple document deletion using multiple keys. * refactor: Split tests into seperate files for the deletion mutuation command. * fix: suppress linter error.
shahzadlone
Successfully merging a pull request may close this issue.
No description provided.
The text was updated successfully, but these errors were encountered: