Hi,
I'm not really sure where to post this, but I found an issue with the MS Graph Groups and Users connector, specifically the List Direct Group Members action (and the List Groups By Display Name Search action). I'm using Logic Apps.
When running, it throws an error message:
"error": {
"code": "BadRequest",
"message": "'True' is not a valid count option.",
If I switch to code view and find the $count line, adding quotes around the true value fixes the issue and it runs fine returning results as expected.
Before:
"method": "get",
"path": "/v1.0/groups/@{encodeURIComponent('ff9aa73e-2482-42a1-9f31-8c1f40f4fdd4')}/members",
"queries": {
"$count": true,
"$filter": "jobTitle ne null",
"$select": "displayName,userPrincipalName,id,jobTitle,mailNickname"After:
"method": "get",
"path": "/v1.0/groups/@{encodeURIComponent('ff9aa73e-2482-42a1-9f31-8c1f40f4fdd4')}/members",
"queries": {
"$count": "true",
"$filter": "jobTitle ne null",
"$select": "displayName,userPrincipalName,id,jobTitle,mailNickname"
If I switch back to designer view make any change and save, the code is reverted, and it fails again. Like I said, not sure if there's somewhere formal to log this, but hopefully someone on here can help feed this back (assuming it can be recreated) 👍
Thanks,
John