Issue querying data using graphql for table

I try to querying data using GraphQL. When I try to show it in table to choose min and max values.
I see results are in single column for each data. It should be 2 column with values, but know over 20 cloumns.
How I can make it to table with 2 column (total and startsAt)

Here is my query

{
  viewer {
    homes {
      currentSubscription{
        priceInfo{
          today {
            total
            startsAt
          }
        }
      }
    }
  }
}

Results