Hi,
Upgrading from 0.14 to 0.15 is giving me some problems with unions that have some boxed enum variant, i.e.:
#[derive(GraphQLUnion)]
pub enum GqlResult {
Ok(Box<Data>),
Err(Error),
}
the docs specifies that container types are supported but the compiler complains about a missing impl of the trait GraphQLObjectType for Box, I'm doing something wrong?
Seems to be a major hole in type-level stuff 馃檧
Will try to submit the PR shortly.
This is released to crates.io. Thanks for the report @Guara92 and for the PR @tyranron !
Most helpful comment
This is released to crates.io. Thanks for the report @Guara92 and for the PR @tyranron !