OBJECT

OrganizationInfo

link GraphQL Schema definition

1type OrganizationInfo {
2
3# The organization ID
4id: ID!
5
6# The organization GUID
7guid: ID
8
9# The organization's name
10name: String
11
12# Organization avatar/logo
13imageUrl: String
14
15# Relative priority in the user org list
16priority: Int
17
18# The email got an invitation and waiting to complete the invitation
19isUserPendingMember(email: String): Boolean
20
21}