OBJECT

Activity

A type that describes a summary of user activities

link GraphQL Schema definition

1type Activity {
2
3# Name of the activity tracked
4type: String!
5
6# Number of access to the activity
7count: Int!
8
9}