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
Describe the bug When I try to use List a user's memberships (direct and transitive) API, and find unconsistent behavior with the same request body and header(ConsistencyLevel:eventual). We don't have any updates for this user. Request Uri: https://graph.microsoft.com/v1.0/me/transitiveMemberOf/microsoft.graph.group?$count=true&$select=id&$top=999 Request header: ConsistencyLevel:eventual
To Reproduce Steps to reproduce the behavior:
Expected behavior return the same response.
Screenshots If applicable, add screenshots to help explain your problem. Reuqest 1(Timestamp 2024-10-14 10:26): Response header: { "cache-control": "no-cache", "client-request-id": "f90f8be0-6e97-4fe9-73af-0ac4ccd8a0dc", "content-type": "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8", "request-id": "36e3062d-c1d9-409b-a0fa-a5beb6fdabc1" }
Response Body: { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups(id)", "@odata.count": 168, "value": [ ... ] }
Reuqest 2(Timestamp 2024-10-14 10:25): Response header: { "cache-control": "no-cache", "client-request-id": "fda3d146-dbf1-f057-70fa-2c470ff4d3b3", "content-type": "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8", "request-id": "84b78a91-b576-402f-914f-4b28d7ba27c5" }
Response Body: { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups(id)", "@odata.count": 867, "value": [ ... ] }
The text was updated successfully, but these errors were encountered:
Hi @microzchang, I am currently unable to reproduce this. Could you confirm that this is still happening?
Sorry, something went wrong.
Hi, @ElinorW It's still happening. May be you can try to use my oid(zchang) to query.
No branches or pull requests
Describe the bug
When I try to use List a user's memberships (direct and transitive) API, and find unconsistent behavior with the same request body and header(ConsistencyLevel:eventual). We don't have any updates for this user.
Request Uri:
https://graph.microsoft.com/v1.0/me/transitiveMemberOf/microsoft.graph.group?$count=true&$select=id&$top=999
Request header:
ConsistencyLevel:eventual
To Reproduce
Steps to reproduce the behavior:
Expected behavior
return the same response.
Screenshots
If applicable, add screenshots to help explain your problem.
Reuqest 1(Timestamp 2024-10-14 10:26):
Response header:
{
"cache-control": "no-cache",
"client-request-id": "f90f8be0-6e97-4fe9-73af-0ac4ccd8a0dc",
"content-type": "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8",
"request-id": "36e3062d-c1d9-409b-a0fa-a5beb6fdabc1"
}
Response Body:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups(id)",
"@odata.count": 168,
"value": [
...
]
}
Reuqest 2(Timestamp 2024-10-14 10:25):
Response header:
{
"cache-control": "no-cache",
"client-request-id": "fda3d146-dbf1-f057-70fa-2c470ff4d3b3",
"content-type": "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8",
"request-id": "84b78a91-b576-402f-914f-4b28d7ba27c5"
}
Response Body:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups(id)",
"@odata.count": 867,
"value": [
...
]
}
The text was updated successfully, but these errors were encountered: