36 lines
755 B
JavaScript
36 lines
755 B
JavaScript
export const workItemQueryResponse = {
|
|
workItem: {
|
|
__typename: 'LocalWorkItem',
|
|
id: '1',
|
|
type: 'FEATURE',
|
|
widgets: {
|
|
__typename: 'LocalWorkItemWidgetConnection',
|
|
nodes: [
|
|
{
|
|
__typename: 'LocalTitleWidget',
|
|
type: 'TITLE',
|
|
contentText: 'Test',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
export const updateWorkItemMutationResponse = {
|
|
__typename: 'LocalUpdateWorkItemPayload',
|
|
workItem: {
|
|
__typename: 'LocalWorkItem',
|
|
id: '1',
|
|
widgets: {
|
|
__typename: 'LocalWorkItemWidgetConnection',
|
|
nodes: [
|
|
{
|
|
__typename: 'LocalTitleWidget',
|
|
type: 'TITLE',
|
|
enabled: true,
|
|
contentText: 'Updated title',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
};
|