OBJECT
Admin
A type that describes the Admin. An Admin has special permissions to edit plan details and to create API keys.
link GraphQL Schema definition
- type Admin {
- # The primary unique identifier of the Admin, this is not the Admin's userId.
- ID! :
- # The primary unique User identifier of the Admin.
- String :
- # The primary email of the User.
- String! :
- # First name of the User.
- String! :
- # Last name of the User.
- String! :
- # Plan id of a given Admin
- String :
- }
link Require by
- AdminConnectionA type that describes the return type for the 'admins' query. 'Admin' data can then be accessed via nodes or edges
- AdminEdgeA type that describes an edge in the 'AdminConnection'. Essentially, a 'AdminEdge' is a wrapper object for 'Admin'. The only addition is a cursor placed on each record that can be used in subsequent queries to fetch 'Admin' records after 'cursor'.