OBJECT
Me
You!
link GraphQL Schema definition
- type Me {
- # The ID of the entity.
- : Int64Bit!
- # A descriptive name.
- : String!
- # A username, used for authentication.
- : String!
- # The publicly viewable name of this user.
- : String!
- # Super admins receive all system permissions automatically, regardless of their
- # role.
- : Boolean!
- # The ID of a Role.
- : Int64Bit
- # An email address.
- : EmailAddress!
- # A mobile phone number. This will be used to send SMS messages.
- : Numeric
- # The preferred language for this user. If none is set, then the system default
- # will be used. This will affect the interface, as well as communications sent to
- # this user.
- : Language!
- # A role defines the permission set that a user has.
- : Role
- # Your personal notification settings.
- #
- # Arguments
- # paginator: Provides the ability to paginate through results.
- # sorter: Provides the ability to sort results.
- # search: Complex search parameters.
- # general_search: Search across all string fields with partial
- # matching.
- # aggregation: Provides the ability to return aggregated
- # mathematical data about your results.
- (
- : Paginator,
- : [Sorter],
- : [Search],
- : String,
- : [Aggregator]
- ): NotificationSettingConnection!
- # Your personal preferences. Affects the look and behavior of Sonar specifically
- # for you.
- : UserPreference!
- # Whether or not a report builder license is granted.
- : Boolean!
- # Whether or not a report viewer license is granted.
- : Boolean!
- # A list of `RecentItem`s that you've viewed.
- #
- # Arguments
- # paginator: Provides the ability to paginate through results.
- # sorter: Provides the ability to sort results.
- # search: Complex search parameters.
- # general_search: Search across all string fields with partial
- # matching.
- # aggregation: Provides the ability to return aggregated
- # mathematical data about your results.
- (
- : Paginator,
- : [Sorter],
- : [Search],
- : String,
- : [Aggregator]
- ): RecentItemConnection!
- # A vehicle.
- #
- # Arguments
- # paginator: Provides the ability to paginate through results.
- # sorter: Provides the ability to sort results.
- # search: Complex search parameters.
- # general_search: Search across all string fields with partial
- # matching.
- # aggregation: Provides the ability to return aggregated
- # mathematical data about your results.
- (
- : Paginator,
- : [Sorter],
- : [Search],
- : String,
- : [Aggregator]
- ): VehicleConnection!
- # Your personal authentication factors.
- #
- # Arguments
- # paginator: Provides the ability to paginate through results.
- # sorter: Provides the ability to sort results.
- # search: Complex search parameters.
- # general_search: Search across all string fields with partial
- # matching.
- # aggregation: Provides the ability to return aggregated
- # mathematical data about your results.
- (
- : Paginator,
- : [Sorter],
- : [Search],
- : String,
- : [Aggregator]
- ): AuthenticationFactorConnection!
- }