Skip to content

Commit 5350d85

Browse files
committed
MAGETWO-83853: GraphQL response returns null for website_ids, url_path
- add documentation
1 parent b337206 commit 5350d85

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Copyright © Magento, Inc. All rights reserved.
22
# See COPYING.txt for license details.
33

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")
1111
}

0 commit comments

Comments
 (0)