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
walletAggregateBackfillState
WalletAggregateBackfillStateResponse!
The current aggregate backfill state for the requested wallet. See WalletAggregateBackfillStateResponse . Show View fields (WalletAggregateBackfillStateResponse)
The wallet address as provided in the request.
status
WalletAggregateBackfillState!
Show WalletAggregateBackfillState (enum)
BackfillNotFound
WalletAggregateBackfillState
No backfill has ever been triggered for this wallet.
BackfillRequestReceived
WalletAggregateBackfillState
Backfill was requested and is queued; no batches have landed yet.
BackfillInProgress
WalletAggregateBackfillState
Pipeline is actively running — either phase 1 (fetching/ingesting transactions) or phase 2 (rebuilding positions).
BackfillComplete
WalletAggregateBackfillState
Both phases finished; wallet_positions is up to date.
BackfillCanceled
WalletAggregateBackfillState
Backfill was started and later canceled (e.g. wallet flagged as a bot mid-run).
BackfillBlocked
WalletAggregateBackfillState
Backfill is blocked for this wallet (e.g. blacklisted / flagged as a bot before running).
Arguments
input
WalletAggregateBackfillStateInput!
required
Show WalletAggregateBackfillStateInput
The wallet address to query. EVM addresses are normalized internally for the lookup; Solana and other non-EVM addresses are used as-is. The response echoes whatever casing/format the client provided.
Example
query WalletBackfillState ( $wallet : String ! ) {
walletAggregateBackfillState ( input : { walletAddress : $wallet }) {
walletAddress
status
}
}
Variables:
{ "wallet" : "0xA92oggkrdzUTd4NGpd2jDYR1rpeeo5LUHayGgjwPLnd4" }
Response:
{
"data" : {
"walletAggregateBackfillState" : {
"walletAddress" : "0xA92oggkrdzUTd4NGpd2jDYR1rpeeo5LUHayGgjwPLnd4" ,
"status" : "BackfillInProgress"
}
}
}
Playground