# PactQueryResponse **Type:** GraphQL objects **Description:** The result of executing a Pact query via a local call. Each `PactQueryResponse` corresponds to one `PactQuery` input and contains the execution result, status, and any error message returned by the Pact interpreter. ## Fields - chainId (String): The chain ID on which the query was executed. - code (String): The original Pact code that was executed. - error (String): Any error message returned during execution. `null` if the query was successful. - result (String): The raw JSON-encoded result returned by the Pact execution. - status (String): The execution status, typically `"success"` or `"failure"`.