Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Commit

Permalink
some additional values for gql schema
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilFreelancer committed Feb 8, 2020
1 parent b487063 commit 058462b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions graphql/schema.graphql
Expand Up @@ -126,8 +126,12 @@ type Group {
object: String
"List of all users in this group"
users: [User!]
"Amount of users in group"
users_count: Int
"List of all servers trought which users in this group may authorize"
servers: [Server!]
"Amount of servers in group"
servers_count: Int
"When record was created"
created_at: DateTime
"When record was updated in last time"
Expand Down Expand Up @@ -166,6 +170,8 @@ type Server {
groups: [Group!]
"List of all users which may connect to this server"
users: [User!]
"Amount of users in group"
users_count: Int
"When record was created"
created_at: DateTime
"When record was updated in last time"
Expand Down

0 comments on commit 058462b

Please sign in to comment.