API Stability Long-Term

The unblockIngest() GraphQL mutation is used to unblock ingest to a specified repository. It requires ManageCluster permission.

For more information on blocking and unblocking ingesting data, see the Blocking and Unblocking Ingestion documentation page.

Syntax

Below is the syntax for the unblockIngest() mutation field:

graphql
unblockIngest(
      repositoryName: string!
   ): UnblockIngestMutation!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  unblockIngest(
     repositoryName: "humio"
  )
    { repository { timeOfLatestIngest } }
}
Example Responses
Show:
json
{
  "data": {
    "unblockIngest": {
      "repository": {
        "timeOfLatestIngest": "2024-11-15T07:42:21.832Z"
      }
    }
  }
}

Returned Datatypes

The returned datatype UnblockIngestMutation has its own parameters. Below is a list of them along with their datatypes and a description of each:

Table: UnblockIngestMutation

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Apr 2, 2025
repositoryRepositoryyes Long-TermThe repository from which to unblock ingest. See Repository.