1
 2
 3
 4
 5
 6
 7
 8
 9
10
use super::types::ListMarketsRequest;
use crate::graphql;
use crate::graphql::list_markets;
use graphql_client::GraphQLQuery;

impl ListMarketsRequest {
    pub fn make_query(&self) -> graphql_client::QueryBody<list_markets::Variables> {
        graphql::ListMarkets::build_query(list_markets::Variables {})
    }
}