Cannot query items on type board

Hello,
I have a question about retrieving the values of the columns of a boards,
Each time i put an intem category inside of the board category, the GraphQL returns an error : “Cannot query items on type Boards”. Is this normal ?
I am trying to retrieve all the data of a board.

query {
  
  boards(limit:1) {
    name
    
    columns {
      title
      id
      type
    }  
    items {
      name
      group {
        id
      }
    }
  }
}

Hello there @oussi1995 and welcome to the community!

I hope you like it here :muscle:

You are trying to use a deprecated query from our old API version.

You can use items_page as explained here:

query {
  boards (ids: 1234567890){
    items_page (limit: 1) {
      cursor
      items {
        id 
        name 
      }
    }
  }
}

Let me know if you have any question!

Cheers,
Matias