Interface AddProjectItemRawResult

Source
Expand description

Raw result interface for the add project item mutation response.

remarks

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

To parse JSON data:

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

Properties§

§data: Data | null

The data payload if the mutation succeeded, null otherwise

§errors?: Error[]

Array of errors if the mutation failed