@@ -8,7 +8,10 @@ export const transfersTimestampQuery = graphql(
8
8
newer: v1_ibc_union_fungible_asset_orders(
9
9
limit: $limit
10
10
order_by: [{ packet_send_timestamp: asc }, { packet_send_transaction_hash: asc }]
11
- where: { packet_send_timestamp: { _gte: $timestamp } }
11
+ where: {
12
+ packet_send_timestamp: { _gte: $timestamp }
13
+ quote_amount: { _neq: "0x00" }
14
+ }
12
15
) {
13
16
...TransferListData
14
17
}
@@ -33,9 +36,12 @@ export const transfersLatestQuery = graphql(
33
36
data: v1_ibc_union_fungible_asset_orders(
34
37
limit: $limit
35
38
order_by: [
36
- { packet_send_timestamp: desc }
37
- { packet_send_transaction_hash: desc }
39
+ { packet_send_timestamp: desc }
40
+ { packet_send_transaction_hash: desc }
38
41
]
42
+ where: {
43
+ quote_amount: { _neq: "0x00" }
44
+ }
39
45
) {
40
46
...TransferListData
41
47
}
@@ -47,7 +53,11 @@ export const transfersLatestQuery = graphql(
47
53
export const transfersIncompleteQuery = graphql (
48
54
/* GraphQL */ `
49
55
query TransfersLatestQuery($cutoff: timestamptz! = "2025-02-11") {
50
- data: v1_ibc_union_fungible_asset_orders(where: {packet_send_timestamp: {_gt: $cutoff}, status: {_neq: "PACKET_ACK"}}
56
+ data: v1_ibc_union_fungible_asset_orders(where: {
57
+ packet_send_timestamp: {_gt: $cutoff},
58
+ status: {_neq: "PACKET_ACK"}
59
+ quote_amount: { _neq: "0x00" }
60
+ }
51
61
order_by: [
52
62
{ packet_send_timestamp: desc }
53
63
{ packet_send_transaction_hash: desc }
0 commit comments