feat(item): Invoke-CreateDraftItem - #165
Conversation
| @@ -0,0 +1,52 @@ | |||
| function Invoke-CreateDraftItem{ | |||
Check notice
Code scanning / PSScriptAnalyzer
The cmdlet 'Invoke-CreateDraftItem' does not have a help comment. Note
| Set-MyInvokeCommandAlias -Alias createDraftItem -Command 'Invoke-CreateDraftItem -ProjectId {projectid} -Title "{title}" -Body "{body}"' | ||
|
|
||
|
|
||
| function New-ProjectDraftIssue { |
Check notice
Code scanning / PSScriptAnalyzer
The cmdlet 'New-ProjectDraftIssue' does not have a help comment. Note
| Set-MyInvokeCommandAlias -Alias createDraftItem -Command 'Invoke-CreateDraftItem -ProjectId {projectid} -Title "{title}" -Body "{body}"' | ||
|
|
||
|
|
||
| function New-ProjectDraftIssue { |
Check warning
Code scanning / PSScriptAnalyzer
Function 'New-ProjectDraftIssue' has verb that could change system state. Therefore, the function has to support 'ShouldProcess'. Warning
| [Parameter(Mandatory,Position=0)][string]$Title, | ||
| [Parameter(Position=1)][string]$Body, | ||
| [Parameter()][switch]$NoCache, | ||
| [Parameter()][switch]$OpenOnCreation |
Check warning
Code scanning / PSScriptAnalyzer
The parameter 'OpenOnCreation' has been declared but not used. Warning
Introduce a GraphQL mutation to create draft items within a project, enhancing project management capabilities. This includes the implementation of necessary functions and tests to ensure functionality.