Gorodov Maksim
07/01/2018, 4:59 AMtype ActionMember {
id: ID! @unique
person: Person! || User!
side: String!
}
Something like OR operationcmcinroy
07/01/2018, 8:52 AMcmcinroy
07/01/2018, 8:53 AMunion PersonOrUser = Person | User
type ActionMember {
id: ID! @unique
person: PersonOrUser!
side: String!
}
Gorodov Maksim
07/01/2018, 5:27 PMGorodov Maksim
07/02/2018, 9:30 AMmember
has the type PersonOrUser
but there's no type or enum declaration with that name.cmcinroy
07/02/2018, 9:39 AMcmcinroy
07/02/2018, 9:41 AMInterface
then?.... which both Person and User implement?