1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use graphql_client::GraphQLQuery;

use crate::types::queries_scalar::{BigInt, Decimal, Timestamp};

#[derive(GraphQLQuery)]
#[graphql(
    schema_path = "graphql/schema.json",
    query_path = "graphql/user/user_active_listings.graphql",
    response_derives = "Debug"
)]
pub struct UserActiveListingsV2;

#[derive(GraphQLQuery)]
#[graphql(
    schema_path = "graphql/schema.json",
    query_path = "graphql/user/user_tcomp_bids.graphql",
    response_derives = "Debug"
)]
pub struct UserTcompBids;

#[derive(GraphQLQuery)]
#[graphql(
    schema_path = "graphql/schema.json",
    query_path = "graphql/user/user_tensorswap_orders.graphql",
    response_derives = "Debug"
)]
pub struct UserTensorSwapOrders;