Can’t convert {data: []} to Vector

@yellowspaceboots
Thanks for your response. If I understood correctly I have updated the schema with:

type LoginResult @embedded {
  token: String
  user: UserEmbedded
}

type UserEmbedded @embedded {
  active : Boolean!
  username : String! @unique
  password : String! @unique
  description : String
  email : String @unique 
  mobile : String @unique
  member_since: Int!
}

I am unable to actually test this change (or any others to the schema) due to the ‘instance data’ issue
However, once that is hopefully finally resolved I will immediately try out this change. It seems a bit cumbersome to effectively be defining User twice to perform the same operations. Any comments you have on that point, as well as any modifications you think I may need to make to the above schema change would be helpful … thanks again …