TypeAlias.GqlwalletTokenBalancesQuery
type GqlwalletTokenBalancesQuery: {
res: {
edges: {
cursor: string | null;
node: {
balance: string;
id: string;
token: {
decimals: number | null;
iconUrl: string | null;
id: string;
name: string | null;
symbol: string | null;
type: string;
} | null;
} | null;
}[];
pageInfo: {
endCursor: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor: string | null;
};
totalCount: number;
} | null;
};
Type declaration
Name | Type |
---|---|
res | { edges : { cursor : string | null ; node : { balance : string ; id : string ; token : { decimals : number | null ; iconUrl : string | null ; id : string ; name : string | null ; symbol : string | null ; type : string ; } | null ; } | null ; }[]; pageInfo : { endCursor : string | null ; hasNextPage : boolean ; hasPreviousPage : boolean ; startCursor : string | null ; }; totalCount : number ; } | null |