Initial end to end testing. generates unique names for user and groups, and all tests run serially
17 lines
208 B
GraphQL
17 lines
208 B
GraphQL
query GetUserDetails($id: String!) {
|
|
user(userId: $id) {
|
|
id
|
|
email
|
|
displayName
|
|
firstName
|
|
lastName
|
|
avatar
|
|
creationDate
|
|
uuid
|
|
groups {
|
|
id
|
|
displayName
|
|
}
|
|
}
|
|
}
|