github.com/dshekhar95/sub_dgraph@v0.0.0-20230424164411-6be28e40bbf1/dgraph/cmd/live/load-uids/family.schema (about)

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