account

Arguments

ArgumentTypeRequiredDefaultDescription
analyzeBooleanNo

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

Return Type

AccountQueryResult

Query

query account(
  $analyze: Boolean
) {
  account(
    analyze: $analyze
  ) {
    request_id
    complexity
    data {
      ...AccountFragment
    }
  }
}

Variables

{
  "analyze": true
}

Response

{
  "data": {
    "account": {
      "request_id": "abc123",
      "complexity": 987,
      "data": Account
    }
  }
}