OBJECT

UserActivityResult

Description

Represents the activity for a specific user.

link GraphQL Schema definition

  • type UserActivityResult {
  • # The user that this result corresponds to.
  • user: AccessUser
  • # The total number of activities this user had.
  • numActivities: Long!
  • # The total number of activities, grouped by activity type.
  • numActivitiesBreakdown: [ActivityResult!]!
  • # ID used for pagination.
  • paginationId: String!
  • }