1
2
3
4
5
6
use std::collections::HashMap;

#[derive(Clone)]
pub struct GQLObject {
    pub attributes: HashMap<String, String>,
}