Skip to content

Fix spelling in GQL schema comments #19864

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/code/Magento/StoreGraphQl/etc/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ type Query {

type Website @doc(description: "The type contains information about a website") {
id : Int @doc(description: "The ID number assigned to the website")
name : String @doc(description: "The website name. Websites use this name to identify it easyer.")
name : String @doc(description: "The website name. Websites use this name to identify it easier.")
code : String @doc(description: "A code assigned to the website to identify it")
sort_order : Int @doc(description: "The attribute to use for sorting websites")
default_group_id : String @doc(description: "The default group id that the website has")
default_group_id : String @doc(description: "The default group ID that the website has")
is_default : Boolean @doc(description: "Specifies if this is the default website")
}

Expand Down