I have a generic type of schema in my database, such as:
type Event{
activity: String! @search(by: [term])
timestamp: String!
}
Events can be really generic, each one having its own attributes.
What I want to do
I want to be able to add data without the need to specify all attributes of different events on my schema.
What I did
I tried to include events normally with GraphQL mutations, but I got raised the error unknown field
.
Dgraph metadata
dgraph version
Dgraph version : v21.03.1