Documentation Index
Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
Use this file to discover all available pages before exploring further.
Returns
backfillWalletAggregates
WalletAggregateBackfillStateResponse!
Current backfill state for the wallet. See WalletAggregateBackfillStateResponse.Show View fields (WalletAggregateBackfillStateResponse)
The wallet that the backfill applies to.
status
WalletAggregateBackfillState!
Arguments
input
WalletAggregateBackfillInput!
required
See WalletAggregateBackfillInput.
Wallet address to backfill aggregates for. Chain-agnostic — pair with networkIds to scope.
Optional list of network ids to restrict the backfill to. Omit to backfill across every supported network the wallet is active on.
Example
mutation BackfillWalletAggregates($input: WalletAggregateBackfillInput!) {
backfillWalletAggregates(input: $input) {
walletAddress
status
}
}
Variables:
{
"input": {
"walletAddress": "0x9924cb8290b0e81d74bbf715583bb77aff87d704",
"networkIds": [1, 56, 8453]
}
}
Playground