ShareeItem
description
ShareeItem is a simple type that unifies all sharees. In general and for all sharee types we need to have an id and name. And it will be the simple format for all type of sharees. without the need of other sharee details.
interface ShareeItem {
id: String!
name: String!
}
Fields
ShareeItem.id
● String!
non-null scalar
Each shareeItem must have a sharee id and it differs per each the implementing type @exposed
ShareeItem.name
● String!
non-null scalar
Each shareeItem must have a name that's different per implementing type @exposed
Returned by
Document__shareesV2
query
Member of
Document
object
Implemented by
EmailSharee
object ● GroupSharee
object ● PresetSharee
object ● UserSharee
object