OBJECT

AlpArticlesWidget

A Widget for customizing an article in the Admin Landing Page project

link GraphQL Schema definition

  • type AlpArticlesWidget implements AlpWidgetInterface {
  • # Id of the Widget
  • id: Int!
  • # Group where the Widget belongs to
  • group: AlpGroup!
  • # Number of columns the widget will takes on a grid (6 or 12).
  • size: Int!
  • # Title of the Widget
  • title: String!
  • # Description of the Widget
  • description: String
  • # The Widget which precedes this one
  • prevWidget: AlpWidgetInterface
  • # The Widget which follows this one
  • nextWidget: AlpWidgetInterface
  • # Repository where images will be uploaded
  • imageRepository: AlpWidgetImageRepositoryType!
  • # Category associated to this widget
  • category: Category!
  • # Can social networks be edited?
  • canEditSocialNetworks: Boolean!
  • # Default media size
  • defaultMediaSize: MediaSize
  • }

link Require by