-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
working on json_path_exists #4286
base: master
Are you sure you want to change the base?
working on json_path_exists #4286
Conversation
Thanks for working on this. The |
54b0440
to
ae53c5d
Compare
Hey @weiznich, I tried working on this again, and I somewhat got to implement the
Some pointers would be appreciated on how to implement the missing traits. |
@weiznich I was trying to implement the
jsonb_path_exists
function. One of its argument is of typeJsonpath
. Currently there is no such type in diesel, so I tried to implement it using thejsonpath_rust
crate.I implemented the
FromSql
trait for it, but I could not figure out how to implement theToSql
trait. I'd appreciate if you could take a look and help me with this or maybe i am going completely in the wrong direction with this?