File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
app/code/Magento/StoreGraphQl/etc Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Copyright © Magento, Inc. All rights reserved.
2
2
# See COPYING.txt for license details.
3
3
4
- type Website {
5
- id : Int
6
- name : String
7
- code : String
8
- sort_order : Int
9
- default_group_id : String
10
- is_default : Boolean
4
+ type Website @doc ( description : " The type contains information about a website " ) {
5
+ id : Int @ doc ( description : "The ID number assigned to the website" )
6
+ name : String @ doc ( description : "The website name. Websites use this name to identify it easyer." )
7
+ code : String @ doc ( description : "A code assigned to the website to identify it" )
8
+ sort_order : Int @ doc ( description : "The attribute to use for sorting websites" )
9
+ default_group_id : String @ doc ( description : "The default group id that the website has" )
10
+ is_default : Boolean @ doc ( description : "Specifies if this is the default website" )
11
11
}
You can’t perform that action at this time.
0 commit comments