Skip to main content

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.

Arguments

input
WalletAggregateBackfillStateInput!
required
Wallet lookup input. See WalletAggregateBackfillStateInput.

Example

query WalletBackfillState($wallet: String!) {
  walletAggregateBackfillState(input: { walletAddress: $wallet }) {
    walletAddress
    status
  }
}
Variables:
{ "wallet": "0xA92oggkrdzUTd4NGpd2jDYR1rpeeo5LUHayGgjwPLnd4" }
Response:
{
  "data": {
    "walletAggregateBackfillState": {
      "walletAddress": "0xA92oggkrdzUTd4NGpd2jDYR1rpeeo5LUHayGgjwPLnd4",
      "status": "BackfillInProgress"
    }
  }
}

Playground