when I define node type with predicates how can I update struct of node. par example , I had define predicate type event which is structured like that :
type Event {
evt_name
}
but after that I want to add another fields to be like that
Type Event {
evt_name,
evt_date,
evt_user
}
my question is : how to define struct type predicate from client golang and update structure dynamically ?