// Local types overriding the stdlib Result should not affect generated code type Result = std::result::Result; #[derive(juniper::GraphQLInputObject)] #[graphql(name = "UserInformation")] pub struct Update { pub email: Option, pub username: Option, } pub fn main() {}