mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
4cf8055224
* ⚡ Add Kitemaker node * ⚡ Require status ID for workItem:create * ✏️ Reword button text * ⚡ Add credentials file * ⚡ Implement pagination * ⚡ Improvements * ⚡ Remove not needed parameter Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
70 lines
876 B
TypeScript
70 lines
876 B
TypeScript
// ----------------------------------
|
|
// mutations
|
|
// ----------------------------------
|
|
|
|
export const createWorkItem = `
|
|
mutation($input: CreateWorkItemInput!) {
|
|
createWorkItem(input: $input) {
|
|
workItem {
|
|
id
|
|
number
|
|
title
|
|
description
|
|
status {
|
|
id
|
|
name
|
|
}
|
|
members {
|
|
id
|
|
username
|
|
}
|
|
watchers {
|
|
id
|
|
username
|
|
}
|
|
labels {
|
|
id
|
|
name
|
|
}
|
|
effort
|
|
impact
|
|
updatedAt
|
|
createdAt
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const editWorkItem = `
|
|
mutation ($input: EditWorkItemInput!) {
|
|
editWorkItem(input: $input) {
|
|
workItem {
|
|
id
|
|
number
|
|
title
|
|
description
|
|
status {
|
|
id
|
|
name
|
|
}
|
|
members {
|
|
id
|
|
username
|
|
}
|
|
watchers {
|
|
id
|
|
username
|
|
}
|
|
labels {
|
|
id
|
|
name
|
|
}
|
|
effort
|
|
impact
|
|
updatedAt
|
|
createdAt
|
|
}
|
|
}
|
|
}
|
|
`;
|