-
Hi is there any way of extending this to add sub tasks to a task ? |
Beta Was this translation helpful? Give feedback.
Answered by
olsh
Mar 1, 2021
Replies: 1 comment
-
Hi @sohnavcom, You can do this with the following code var parentId = await client.Items.AddAsync(new Item("Parent task"));
await client.Items.AddAsync(new Item("Child task") { ParentId = parentId.PersistentId }); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
olsh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @sohnavcom,
You can do this with the following code