server-less 0.6.0

Composable derive macros for common Rust patterns
Documentation
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() {}