Skip to main content

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