Query Neo4j nodes by internal node <id> using GraphQL

Hello Everyone,

I already have data in Neo4j. I want to query the Neo4j using the internal of the nodes.

query {
  people(where: {id:"1"}){
    id
  }
}

I am sure I am doing something wrong here since internal is not a property.