the following query fails with error. my login is the owner of the org.
query {
organization(login:"<org>") {
auditLog(last:100){
edges{
node{
... on AuditEntry {
action
actorLogin
createdAt
}
}
}
}
}
}
{
"data": {
"organization": null
},
"errors": [
{
"type": "FORBIDDEN",
"path": [
"organization",
"auditLog"
],
"locations": [
{
"line": 8,
"column": 7
}
],
"message": "vivekthangathurai does not have permission to retrieve auditLog information."
}
]
}