Query model levels using GraphQL

Is there a way we can query model levels along with its height and elevation?

I found that we can touch the level name by using this query and passing objectId

query ModelStoryQuery($projectId: String!, $objectId: String!) {
  project(id: $projectId) {
    id
    object(id: $objectId) {
      id
      data
      }
    }
  }

How can I get the story height or elevation information associated to this level?