Skip to main content

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

NameType
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