Module graphql/mutation_updateItemDate/updateItemDateGenerated

Source

Type Aliases§

Source§

type UpdateItemDateResult = Data

Type alias for the successful result data from the update item date mutation.

remarks

This represents the data payload when the mutation executes successfully.

Variables§

Source§

const updateItemDateMutation: string...

GraphQL mutation for updating a date field value of a project item.

remarks

This mutation updates a date field on an item in a GitHub Project V2. It requires the project ID, item ID, field ID, and the new date value.

example
mutation updateItemField($projectId: ID!, $itemId: ID!, $fieldId: ID!, $date: Date) {
updateProjectV2ItemFieldValue(
input: {
projectId: $projectId
itemId: $itemId
fieldId: $fieldId
value: { date: $date }
}
) {
projectV2Item { id }
}
}

Classes§

Convert

Utility class for converting between JSON strings and typed objects.

Interfaces§

Data

Data payload interface for the update item date mutation.

Error

Error interface for GraphQL mutation errors.

ProjectV2Item

Project item interface representing an item in a GitHub Project V2.

UpdateItemDateRawResult

Raw result interface for the update item date mutation response.

UpdateProjectV2ItemFieldValuePayload

Payload interface for the updateProjectV2ItemFieldValue mutation result.