schema.graphqls 1.1 KB

12345678910111213141516171819
  1. # Copyright © Magento, Inc. All rights reserved.
  2. # See COPYING.txt for license details.
  3. type StoreConfig @doc(description: "The type contains information about a store config") {
  4. head_shortcut_icon : String @doc(description: "Favicon Icon")
  5. default_title : String @doc(description: "Default Page Title")
  6. title_prefix : String @doc(description: "Page Title Prefix")
  7. title_suffix : String @doc(description: "Page Title Suffix")
  8. default_description : String @doc(description: "Default Meta Description")
  9. default_keywords : String @doc(description: "Default Meta Keywords")
  10. head_includes : String @doc(description: "Scripts and Style Sheets")
  11. demonotice : Int @doc(description: "Display Demo Store Notice")
  12. header_logo_src : String @doc(description: "Logo Image")
  13. logo_width : Int @doc(description: "Logo Attribute Width")
  14. logo_height : Int @doc(description: "Logo Attribute Height")
  15. welcome : String @doc(description: "Welcome Text")
  16. logo_alt : String @doc(description: "Logo Image Alt")
  17. absolute_footer : String @doc(description: "Footer Miscellaneous HTML")
  18. copyright : String @doc(description: "Copyright")
  19. }