--- a
+++ b/schema.txt
@@ -0,0 +1,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
+#                       }
+#                    }
+#                }
+#            }
+#        }
+#     }
+#   }
+# }
+#}