Results 30 comments of mx

@tyranron, @LegNeato , sorry to bother you with this, but would you be open to a PR that implements common Rust types as custom GQL types natively? The approach suggested...

@ilslv , did you say that implementing this trait may get me out of newtyping? ```pub trait ScalarValue: fmt::Debug + fmt::Display + PartialEq + Clone + DeserializeOwned + Serialize +...

@ilslv , thanks for the link, sir! I managed to make it compile with ```rust #[graphql_object(scalar = MyScalarValue)] impl TestType { fn long_field() -> i64 { i64::from(i32::MAX) + 1 }...

@ilslv, @tyranron, thanks a lot for the great product and your help. It was a steep learning curve (for me), but I finally got it working end-to-end. Would you like...

I'm trying to update my custom scalar implementation for u64 to work with the new `#[graphql_scalar ...]` macro as described in https://graphql-rust.github.io/juniper/master/types/scalars.html#using-foreign-types-as-scalars. The minimal example in the guide is a...

Yes, that's the one. I starting adapting the custom implementation I had, but wasn't sure what changed there. It looked like you completely removed GraphQLScalarValue. The change log was still...

@ilslv , @tyranron , thanks for your prompt replies! You raised some good points. 1. HashSet stores and outputs elements in random order. Not sure if this is a blocker....

I'm no expert, but it looks like https://github.com/apollographql/apollo-rs offers 2 crates: * **an encoder** to generate a schema using a Rust API, but it is not the same as generating...

We are looking at adding error logging inside AWS Lambda Runtime for Rust (https://github.com/awslabs/aws-lambda-rust-runtime/issues/241). The plan was to use _Display_ trait, but that means the user would have to implement...

I agree that `async-trait` is probably an overkill just for this narrow use case. An optional signing function is an easier solution. The signing code doesn't need to be part...