OBJECT

SMTPServer

link GraphQL Schema definition

  • type SMTPServer {
  • # ID
  • id: ID!
  • # Name
  • name: String!
  • # SMTP server address
  • smtpServer: String!
  • # SMTP user on the server
  • smtpUser: String!
  • # Port of SMTP server
  • smtpPort: Int!
  • # Password for SMTP server
  • password: String
  • # sender email address
  • sender: String!
  • # Is smtp server archived
  • archived: Boolean!
  • # Object usage information
  • usageInfo: UsageInfo!
  • # EmailGroups the server belongs to
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • emailGroups(after: String, first: Int, before: String, last: Int): EmailGroupConnection!
  • }