GetAccountCoinsData top-level constant
String
const GetAccountCoinsData
Implementation
const GetAccountCoinsData = r'''
query getAccountCoinsData($owner_address: String, $offset: Int, $limit: Int) {
current_coin_balances(
where: {owner_address: {_eq: $owner_address}}
offset: $offset
limit: $limit
) {
amount
coin_type
coin_info {
name
decimals
symbol
}
}
}
''';