use std::collections::HashMap;
use serde_json::Value as JsonValue;
pub use self::sorted_value::*;
mod sorted_value;
#[cfg(feature = "graphql")]
pub type Map = HashMap<String, async_graphql::Json<JsonValue>>;
#[cfg(not(feature = "graphql"))]
pub type Map = HashMap<String, JsonValue>;