We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Extend the (GraphQL)ScalarValue custom derive to support newtype structs.
(GraphQL)ScalarValue
This should work similar to how serde does it with #[serde(transparent)].
(I'm working on this).
Example:
#[derive(GraphQLScalarValue)] struct MyCustomId(Uuid);
The text was updated successfully, but these errors were encountered:
serde_json::Value
Are you still working on this or should I take a crack at it?
Sorry, something went wrong.
theduke
Successfully merging a pull request may close this issue.
Extend the
(GraphQL)ScalarValue
custom derive to support newtype structs.This should work similar to how serde does it with #[serde(transparent)].
(I'm working on this).
Example:
The text was updated successfully, but these errors were encountered: