Can i update AccountInputOpt table

hello, i want to ask a question,can i add more custom fields in AccountInputOpt this predefined table

Hi, - no you’re not able to modify tables from an app you do not own.
The Account type is provided by Hypi in its core app. The usual way to do this is to create your own type which uses Account as a field such as:

  type MyCustomAccountTable {
      acc: Account!
      myField1: String
      myField2: Int
  }
  • thumbsup

  • Like

  • Reply