Skip to main content
Version: Latest

GroupSharee

description

This is a value type that is identical to the schema in graphql-user-activity !

type GroupSharee implements ShareeItem {
id: String!
shareeId: Int!
userCount: Int!
name: String!
}

Fields

GroupSharee.id ● String! non-null scalar

Id value is always the same value as shareeId @exposed

GroupSharee.shareeId ● Int! non-null scalar

shareeId is a unique Int value that identifies a group sharee @exposed

GroupSharee.userCount ● Int! non-null scalar

number of members in the group sharee @exposed

GroupSharee.name ● String! non-null scalar

name of the group sharee @exposed

Interfaces

ShareeItem interface

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.