1 2 3 4 5 6 7
use server_less::graphql_input; // #[graphql_input] on a tuple struct should error because only named fields are supported. #[graphql_input] struct MyInput(String, u32); fn main() {}