Initial end to end testing. generates unique names for user and groups, and all tests run serially
7 lines
97 B
GraphQL
7 lines
97 B
GraphQL
mutation CreateGroup($name: String!) {
|
|
createGroup(name: $name) {
|
|
id
|
|
displayName
|
|
}
|
|
}
|