blob: 37b5eef6a7eae0c903fceffe26aeaacedbd362ef [file] [log] [blame]
datatype String
entity Blog {
title: String
many posts: Post
}
entity HasAuthor {
author: String
}
entity Post extends HasAuthor {
title: String
content: String
many comments: Comment
}
entity Comment extends HasAuthor {
content: String
many responses: Comment
}