use async_graphql::InputObject; use serde::{Deserialize, Serialize}; #[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq, InputObject)] pub struct CreateProjectMutation { pub name: String, pub description: Option, }