-
Notifications
You must be signed in to change notification settings - Fork 20
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
Add support for limits and partial operation to DeleteRelationships #61
Conversation
2dcba2b
to
180c4be
Compare
// deleted_at is the revision at which the relationships were deleted. | ||
ZedToken deleted_at = 1; | ||
|
||
// result is the result of the deletion. |
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.
Result is an enumeration of the possible outcomes that occurred when attempting to delete the specified relationships.
// RESULT_PARTIAL_MATCHING_DELETED indicates that a subset of the relationships matching the filter | ||
// were deleted. Only returned if optional_allow_partial_deletions was true, an optional_limit was | ||
// specified, and there existed more relationships matching the filter than optional_limit would allow. | ||
DELETION_RESULT_PARTIAL_MATCHING_DELETED = 2; |
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.
If I allow partial deletions am I supposed to spin in a loop until I finally get DELETION_RESULT_ALL_MATCHING_DELETED
?
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.
Pretty much
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, left a question
180c4be
to
97b1983
Compare
97b1983
to
8f33ddb
Compare
No description provided.