
scalar (
  name: string 
  address: string @index
)

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