Interface GetProjectIDRawResult

Source
Expand description

Raw result interface for the get project ID query response.

remarks

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);
interface GetProjectIDRawResult {
    data: Data | null;
    errors?: Error[];
}

Properties§

§data: Data | null
§errors?: Error[]