While using the below structure:
type Post {
tags: [Hashtag!]
}
type Hashtag {
value: String!
}
If 2 or more posts have the same common tags, like #winter, will HashTag Table store only unique tags?
When I create a post with the same tags, the tags are saved again in HashTag table with different hypi id.