Skip to main content

Returns

getNetworkStatus
[MetadataResponse!]!
List of network indexing status objects. See MetadataResponse.

Arguments

networkIds
[Int!]!
required
List of network IDs to fetch status for (e.g. [1, 1399811149]).

Example

query GetNetworkStatus {
  getNetworkStatus(networkIds: [1]) {
    networkId
    networkName
    lastProcessedBlock
    lastProcessedTimestamp
  }
}

Playground