We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a Planner plan with a completed task. When I run
Get-PnPPlannerTask -PlanId Isp_70BV1kOJ6rilI8NPi5cAHFre
I get this response:
Found out the issue is because of a JSON parse problem. The JSON returned from Graph for the property completedBy is a user object.
completedBy
However in the PlannerTask model, the CompletedBy property is of the type string.
CompletedBy
string
powershell/src/Commands/Model/Planner/PlannerTask.cs
Line 35 in 06d0ce8
Tasks are returned
Error: Get-PnPPlannerTask: Object reference not set to an instance of an object.
Get-PnPPlannerTask -PlanId "abdefgh"
v1.10.0
The text was updated successfully, but these errors were encountered:
When fine, I'm willing to fix this one.
Sorry, something went wrong.
PlannerTask
Successfully merging a pull request may close this issue.
Reporting an Issue or Missing Feature
I have a Planner plan with a completed task. When I run
I get this response:
Found out the issue is because of a JSON parse problem.
The JSON returned from Graph for the property
completedBy
is a user object.However in the PlannerTask model, the
CompletedBy
property is of the typestring
.powershell/src/Commands/Model/Planner/PlannerTask.cs
Line 35 in 06d0ce8
Expected behavior
Tasks are returned
Actual behavior
Error:
Get-PnPPlannerTask: Object reference not set to an instance of an object.
Steps to reproduce behavior
Get-PnPPlannerTask -PlanId "abdefgh"
What is the version of the Cmdlet module you are running?
v1.10.0
Which operating system/environment are you running PnP PowerShell on?
The text was updated successfully, but these errors were encountered: