-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
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
feat: Add Document Deletion with a Key #150
Conversation
TODO: Incorporate the version fetcher logic in a modular way.
Codecov Report
@@ Coverage Diff @@
## develop #150 +/- ##
===========================================
+ Coverage 58.76% 61.81% +3.04%
===========================================
Files 89 83 -6
Lines 8578 8094 -484
===========================================
- Hits 5041 5003 -38
+ Misses 2993 2552 -441
+ Partials 544 539 -5
|
Todo: use the version fetcher.
Todo: There is a bug where it still shows me the document exists.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added comments and changes for the the deleteNode stuff
d6216b9
to
54dbfad
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Great work!
This enables the deletion of a single document using their dockey. The query will look like something like this: mutation { delete_user(id: "bae-6a6482a8-24e1-5c73-a237-ca569e41507d") { deletedDocKey: _key } } Note: deletedDocKey is an alias of a deleted key. This PR resolves and closes #32 and #163 Future Work: Implement the deletion of multiple documents using multiple keys. Implement the deletion of documents using filters.
This enables the deletion of a single document using their dockey. The query will look like something like this: mutation { delete_user(id: "bae-6a6482a8-24e1-5c73-a237-ca569e41507d") { deletedDocKey: _key } } Note: deletedDocKey is an alias of a deleted key. This PR resolves and closes sourcenetwork#32 and sourcenetwork#163 Future Work: Implement the deletion of multiple documents using multiple keys. Implement the deletion of documents using filters.
This enables the deletion of a single document using their dockey.
The query will look like something like this:
Note:
deletedDocKey
is an alias of a deleted key.This PR resolves and closes #32 and #163
Future Work: