Raw result interface for the update item date mutation response.
This interface represents the complete GraphQL response structure, including both successful data and potential errors.
To parse JSON data:
import { Convert, UpdateItemDateRawResult } from "./file";const updateItemDateRawResult = Convert.toUpdateItemDateRawResult(json); Copy
import { Convert, UpdateItemDateRawResult } from "./file";const updateItemDateRawResult = Convert.toUpdateItemDateRawResult(json);
interface UpdateItemDateRawResult { 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 update item date mutation response.