Raw result interface for the add assignee mutation response.
This interface represents the complete GraphQL response structure, including both successful data and potential errors.
To parse JSON data:
import { Convert, AddAssigneeRawResult } from "./file";const addAssigneeRawResult = Convert.toAddAssigneeRawResult(json); Copy
import { Convert, AddAssigneeRawResult } from "./file";const addAssigneeRawResult = Convert.toAddAssigneeRawResult(json);
interface AddAssigneeRawResult { data: Data | null; errors?: Error[];}
data: Data | null
The data payload if the mutation succeeded, null otherwise
errors?: Error[]
Array of errors if the mutation failed
Raw result interface for the add assignee mutation response.