Diff of /schema.txt [000000] .. [2003ef]

Switch to unified view

a b/schema.txt
1
### Here is an example prompt to generate a graphQL query: Find the top 3 diseases associated with HBB
2
#
3
### query top_n_associated_diseases {
4
#   search(queryString: "HBB", entityNames: "target") {
5
#    hits { id,
6
#           name, 
7
#           entity,
8
#            object {
9
#               ... on Target {
10
#              associatedDiseases(page: {index: 0, size: 5}) {
11
#                 rows {
12
#                  score
13
#                   disease {
14
#                     name
15
#                       }
16
#                    }
17
#                }
18
#            }
19
#        }
20
#     }
21
#   }
22
# }
23
#}