
scalar (
  name: string 
  address: string @index
)

type  Person {
  name: string 
  age: int
  address: string
  friend: Person @index
}
