Louis Rose
Louis Rose
When I try to run `rusty-gql generate` for a schema that contains an `InputType` with an array typed member, the Rust compiler tells me that GqlInputType is not implemented for...
I have the following (MySQL) database schema: ``` sql CREATE TABLE `jobs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL, `export_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`) )...
As discussed in #546, I was seeing an issue whereby foreign key attributes where not being set during a `create_association` for a `belongs_to`. This is one potential fix: it overrides...
## Feature Request Would you accept a contribution to implement `Value` for `T: serde::Serialize + Debug` behind feature flag(s). Here's a simple example for JSON: ```rust impl Value for T...