OBJECT
UserActivityResult
Description
Represents the activity for a specific user.
link GraphQL Schema definition
- type UserActivityResult {
- # The total number of activities this user had.
- : Long!
- # The total number of activities, grouped by activity type.
- : [ActivityResult!]!
- # ID used for pagination.
- : String!
- # The user that this result corresponds to.
- : AccessUser
- }
link Require by
- UserActivityResultConnectionPaginated list of UserActivityResult objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- UserActivityResultEdgeWrapper around the UserActivityResult object. This wrapper is used for pagination.