OBJECT
Manager
A Manager is a User who has additional rights to manage a Team. For more details on Team Manager, please see: https://help.pluralsight.com/help/permissions-levels-for-team-managers
link GraphQL Schema definition
- type Manager {
- # The primary unique identifier of the Manager, this is not the Manager's userId.
- ID! :
- # The unique identifier for the User.
- String :
- # The primary email of the User.
- String! :
- # First name of the User.
- String! :
- # Last name of the User.
- String! :
- # The Team that this Manager manages.
- Team :
- # The Pluralsight Plan for the given record.
- String :
- }
link Require by
- ManagerConnectionA type that describes the return type for the managers query. Manager can then be accessed via nodes or edges
- ManagerEdgeA type that describes an edge in the ManagerConnection. Essentially, a ManagerEdge is a wrapper object for Manager. The only addition is a cursor placed on each record that can be used in subsequent queries to fetch Manager records after 'cursor'.