pub trait GraphQLResolver { // Required method fn resolve( &self, field: &str, args: &HashMap<String, Value>, ) -> DeviceResult<Value>; }
GraphQL resolver trait