Created
December 23, 2019 11:47
-
-
Save Lavanyagaur22/ead8ff151b61990b17c4681a14053592 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mutation createTask($input: TaskInput!){ | |
createTask(input: $input){ | |
id | |
version | |
title | |
description | |
status | |
creationMetadata{ | |
createdDate | |
taskId | |
createdBy{ | |
id | |
firstName | |
lastName | |
title | |
taskId | |
creationmetadataId | |
} | |
} | |
assignedTo{ | |
id | |
firstName | |
lastName | |
title | |
taskId | |
creationmetadataId | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment