[4a9c97]: / schema.txt

Download this file

24 lines (23 with data), 593 Bytes

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