INPUT_OBJECT

AppIconArgument

The input type for the icon on the app

link GraphQL Schema definition

  • input AppIconArgument {
  • # The type of the icon. This should be one of the font-awesome icons without "fa"
  • # prefix
  • type: String
  • # The color of the icon.
  • # A hexadecimal color is specified with: #RRGGBB.
  • # RR (red), GG (green) and BB (blue) are hexadecimal integers between 00 and FF
  • # specifying the intensity of the color.
  • # For example, #0000FF is displayed as blue, because the blue component is set to
  • # its highest value (FF) and the others are set to 00.
  • color: String
  • }