Raw result interface for the get project ID query response.
This interface represents the complete GraphQL response structure, including both successful data and potential errors.
To parse JSON data:
import { Convert, GetProjectIDRawResult } from "./file";const getProjectIDRawResult = Convert.toGetProjectIDRawResult(json); Copy
import { Convert, GetProjectIDRawResult } from "./file";const getProjectIDRawResult = Convert.toGetProjectIDRawResult(json);
interface GetProjectIDRawResult { data: Data | null; errors?: Error[];}
data: Data | null
errors?: Error[]
Raw result interface for the get project ID query response.