custom_box

Arguments

ArgumentTypeRequiredDefaultDescription
idStringNo
analyzeBooleanNo

If true, the query will only be analyzed (cost estimated) without executing it.

Return Type

CustomBoxQueryResult

Query

query custom_box(
  $id: String,
  $analyze: Boolean
) {
  custom_box(
    id: $id,
    analyze: $analyze
  ) {
    request_id
    complexity
    data {
      ...CustomBoxFragment
    }
  }
}

Variables

{
  "id": "abc123",
  "analyze": true
}

Response

{
  "data": {
    "custom_box": {
      "request_id": "abc123",
      "complexity": 987,
      "data": CustomBox
    }
  }
}