How to get all of user's groups by GraphQL Api?

I know how to get projects, such as

how about groups? thanks!

Hi did you try this?

 {
   users(usernames: ["maciekbanas"]) {
     pageInfo {
       endCursor
       startCursor
       hasNextPage
     }
     nodes {
       id
       username,
       groups {
         edges {
           node {
             id
           }
         }
       }
     }
   }
 }