wikijs-fork/client/graph/admin/groups/groups-query-single.gql

23 lines
265 B
Plaintext
Raw Normal View History

2018-03-26 05:11:49 +00:00
query ($id: Int!) {
groups {
single(id: $id) {
id
name
rights {
id
path
role
exact
allow
}
users {
id
name
email
}
createdAt
updatedAt
}
}
}