OBJECT

LoginUser

Represents a User in EchoStream that can log into the EchoStream UI.

link GraphQL Schema definition

  • type LoginUser {
  • # The date/time that the LoginUser became active.
  • activeAt: AWSDateTime
  • # When and who created.
  • created: AtBy!
  • # The email address.
  • email: AWSEmail!
  • # The first name.
  • firstName: String!
  • # When and who modified.
  • lastModified: AtBy!
  • # The last name.
  • lastName: String!
  • # A list of TenantUsers linked to this LoginUser.
  • tenantUsers: [TenantUser!]
  • # Deletes this.
  • Delete: Boolean!
  • # Update and return the LoginUser.
  • #
  • # Arguments
  • # firstName: The first name.
  • # lastName: The last name.
  • Update(firstName: String, lastName: String): LoginUser!
  • }