Files
speckle-server/packages/server/modules/stats/graph/schemas/stats.gql
T
2021-06-10 17:47:15 +01:00

27 lines
668 B
GraphQL

extend type Query {
serverStats: ServerStats!
}
type ServerStats {
totalStreamCount: Int!
totalCommitCount: Int!
totalObjectCount: Int!
totalUserCount: Int!
"""
An array of objects currently structured as { created_month: Date, count: int }.
"""
streamHistory: [JSONObject]
"""
An array of objects currently structured as { created_month: Date, count: int }.
"""
commitHistory: [JSONObject]
"""
An array of objects currently structured as { created_month: Date, count: int }.
"""
objectHistory: [JSONObject]
"""
An array of objects currently structured as { created_month: Date, count: int }.
"""
userHistory: [JSONObject]
}