graphql: Add a method to list groups

This commit is contained in:
Valentin Tolmer
2021-09-16 09:26:31 +02:00
committed by nitnelave
parent e4d6b122c5
commit 480f48f820
11 changed files with 147 additions and 57 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ query GetUserDetails($id: String!) {
lastName
creationDate
groups {
id
displayName
}
}
}
+1 -1
View File
@@ -219,7 +219,7 @@ impl Component for UserDetails {
html! {
<tr>
<td><button>{"-"}</button></td>
<td>{&group.id}</td>
<td>{&group.display_name}</td>
</tr>
}
};