mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
23 lines
265 B
GraphQL
23 lines
265 B
GraphQL
query ($id: Int!) {
|
|
groups {
|
|
single(id: $id) {
|
|
id
|
|
name
|
|
rights {
|
|
id
|
|
path
|
|
role
|
|
exact
|
|
allow
|
|
}
|
|
users {
|
|
id
|
|
name
|
|
email
|
|
}
|
|
createdAt
|
|
updatedAt
|
|
}
|
|
}
|
|
}
|