Interface ListOpenedProjectsInOrgRawResult

Source
Expand description

Raw result interface for the list opened projects query response.

remarks

This interface represents the complete GraphQL response structure, including both successful data and potential errors.

To parse JSON data:

import { Convert, ListOpenedProjectsInOrgRawResult } from "./file";
const listOpenedProjectsInOrgRawResult = Convert.toListOpenedProjectsInOrgRawResult(json);
interface ListOpenedProjectsInOrgRawResult {
    data: Data | null;
    errors?: Error[];
}

Properties§

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