Returns
List of network indexing status objects. See MetadataResponse.Show View fields (MetadataResponse, each element)
Unique network identifier.
Display name of the network (e.g. Ethereum, Solana).
Last indexed block number for the network.
Unix timestamp of the last processed block.
Arguments
List of network IDs to fetch status for (e.g. [1, 1399811149]).
Example
query GetNetworkStatus {
getNetworkStatus(networkIds: [1]) {
networkId
networkName
lastProcessedBlock
lastProcessedTimestamp
}
}
Playground