Request Logs entity: Lookup any requestId to see status or troubleshoot issues

The requestLogs entity takes an requestId from other queries and supplies information about that request and the related jobs. If there were errors in processing they will be noted in the exceptions object.

For the latest entity information and schema please see the embedded tabs on the GraphQL endpoint: https://beta.archiveprotocol.com/graphql

Sample Request

query requestLogs {
    requestLogs(
    requestId: "c13752ce-3a80-42bf-933a-bff1b9325b5d"
  ) {
    requestId
    indexingStatus {
      headBlock
      headTimestamp
      lastSyncedBlock
      lastSyncedTimestamp
    }
    userIdentifier
    blueprintId
    jobId
    jobStatus
    priority
    exceptions{
      metadata
    }
    logs
  }
}

Sample Response (no errors)

{
  "data": {
    "requestLogs": {
      "requestId": "c13752ce-3a80-42bf-933a-bff1b9325b5d",
      "indexingStatus": {
        "headBlock": 123924247,
        "headTimestamp": 1723447271,
        "lastSyncedBlock": 123924247,
        "lastSyncedTimestamp": 1723447271
      },
      "userIdentifier": "0x53092c0c976f66239a2ee565b5ecf7c58975f85a",
      "blueprintId": "clipper_optimism",
      "jobId": "syncUserTransactions-clipper_optimism-0x53092c0c976f66239a2ee565b5ecf7c58975f85a-Fri Aug 02 2024 17:57:33 GMT+0000 (Coordinated Universal Time)",
      "jobStatus": "completed",
      "priority": 1,
      "exceptions": [
        {
          "metadata": {
            "issue": "Missing token prices",
            "price": 0,
            "timestamp": 1722621419,
            "entityType": "interval_data",
            "blockNumber": 123511321,
            "noPriceTokenData": [
              {
                "symbol": "LINK",
                "tokenIdentifier": "0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6"
              }
            ],
            "noPriceShareIdentifiers": []
          }
        }
      ],
      "logs": []
    }
  }
}