schema.hx 320 B

12345678910111213141516171819202122232425262728
  1. N::Chapter {
  2. chapter_index: I64
  3. }
  4. N::SubChapter {
  5. title: String,
  6. content: String
  7. }
  8. E::Contains {
  9. From: Chapter,
  10. To: SubChapter,
  11. Properties: {
  12. }
  13. }
  14. V::Embedding {
  15. chunk: String
  16. }
  17. E::EmbeddingOf {
  18. From: SubChapter,
  19. To: Embedding,
  20. Properties: {
  21. chunk: String
  22. }
  23. }