-
Notifications
You must be signed in to change notification settings - Fork 39
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
Select for Update/Delete #1
Comments
Hi, APIs for handling for "mut json_obj" are not yet supported. I am developing query and transform functions for "&json_obj" first. For example, selector
.select_then()?
.map(|mut v | { .. })
.map_as(|v: result::Result<Person, String>| { .. })?
.take_as::<Person>()?; |
Any progress on that? Do you need any help here? |
Hi, sorry for the late response. I didn’t notice your comment. the "map" and the "map_as" function merged in master. |
Thanks! Are you planing to add a way to mutate the JSON based on jsonpath? |
yes, i have a plan to write the APIs to mutate the JSON.
or
do you have better idea? |
what will .into_mut() do? clone to muted? |
I keep thinking about "into_mut" but the basic meaning of "into_mut" is to clone the current context.
|
Looks good! |
Thanks for comment.
|
OK, I'll be glad to test it once you have it ready, my deepest concern is about performance. |
Great!! |
Is there a way to select for update/delete?
The text was updated successfully, but these errors were encountered: