Generated types for nested Cell query

Hi,
assuming we have an ItemCell with the following query:`

export const QUERY = gql`
  query FindItemss($type: ItemType!) {
    items(type: $type) {
      id
      name
      values {
        value
      }
    }
  }
`

If I generate types yarn rw g types I only get a type roughly like:

type FindItems { id: string, name: string }

so it is missing the values part.
Is this the correct behaviour?

Preferably it would be:

type FindItems { id: string, name: string, values: { value: number } }

I had an error when using yarn rw g types just at the beginning. The console.log wasn´t clear, since it ends with ... and done even if there was an issue on the web side. After fixing the error, the types are properly generated!

“Closed ;)”