Closed
Description
Currently using 0.14.1. I'm attempting to implement fields with the juniper::object macro.
#[juniper::object(
Context = Context,
Scalar = juniper::DefaultScalarValue,
)]
impl Event {
On compilation, i see the following error:
error[E0277]: the trait bound models::Event: juniper::GraphQLType<__S>
is not satisfied
On this struct, I've implemented another trait that does not have the juniper::object macro.
impl TraitName for Event
I've looked through the docs and issues and have been unable to find a solution.
Thanks!