reactive_graph_plugin_api/graphql/
http_body.rs

1use serde_json::Value;
2
3pub enum HttpBody {
4    None,
5    Binary(Vec<u8>),
6    Json(Value),
7    PlainText(String),
8}