enum CompareVariant {
  ICON
  CHECKBOX
}

extend input GraphCommerceConfig {
  """
  Use compare functionality
  """
  compare: Boolean

  """
  By default the compare feature is denoted with a 'compare ICON' (2 arrows facing one another).
  This may be fine for experienced users, but for more clarity it's also possible to present the compare feature as a CHECKBOX accompanied by the 'Compare' label
  """
  compareVariant: CompareVariant = ICON
}
