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