github.hscsec.cn/dgraph-io/dgraph@v1.1.0/dgraph/cmd/live/load-json/family.schema (about)

     1  type FamilyMember {
     2      name: string
     3      age: int
     4      role: string
     5      aka: string
     6      carries: string
     7      parent_to: [FamilyMember]
     8      sibling_of: [FamilyMember]
     9  }
    10  
    11  name:string @index(term) .
    12  age: int .
    13  role: string @index(term) @lang .
    14  aka: string @index(term) .
    15  carries: string @index(term) .
    16  parent_to: [uid] @reverse .
    17  sibling_of: [uid] @reverse .