Adding groups to the query

Following the Qickstart tutorial I learned to create the following query
“query2 = ‘query($myBoardID: Int!) {boards (ids: [$myBoardID]) { name id description items { name column_values{title id type text } } } }’”
But it doesn’t list the groups in the board, dividing the information per group
How can I achieve that?

Try this:

query {
  boards (limit:1) {
    groups {
      id
      title
      items {
        id
        name
      }
    }
  }
}