OBJECT

Metrics

A type that describes the data metrics of the system

link GraphQL Schema definition

1type Metrics {
2
3# Total number of users registered in the system
4users: Int!
5
6# Total number of users whose token has not expired
7activeUsers: Int!
8
9# Total number of feeds registered in the system
10feeds: Int!
11
12# List of activities tracked
13activities: [Activity]
14
15}

link Required by