Users may need to generate a report of user names alongside their login and activity timestamps to monitor platform engagement or perform security audits.
Use the GraphQL Explorer to fetch a list of users including their display names and recent activity markers:
Access the GraphQL Explorer at the following URL: https://apps.cloudhealthtech.com/ui/graphql-explorer/
Copy and paste the following query into the editor:
query UserLogins {
users(first: 1000) {
pageInfo {
hasNextPage
endCursor
}
edges {
node {
name
id
lastSignIn
lastActivity
}
}
}
}
name, id, lastSignIn, and lastActivity fields for up to 1,000 users per page.