-
-
Notifications
You must be signed in to change notification settings - Fork 40
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
Support json as parameter #35
Comments
Hmm, maybe we should instead be doing But in that case it's not difficult to simply run let x = json!(r#"{"hello":"world"}"#);
let resp = client
.from("table")
.insert(x.to_string())
// ... |
Yep you're right it would lock us down to serde. However, should we prefer making the manipulation on user side either? Sorry, I'm quite new to Rust idioms and rules. Thus I was a bit surprised as the underlying code seems to be based on reqwest which accepts json with |
No probs! There might be more upside to enabling it in reqwest - e.g. you otherwise need to add a reqwest also converts the json to |
Hello!
Thanks for the amazing work :) Would it be possible to add Serde json support to perform queries based on json input?
The text was updated successfully, but these errors were encountered: