You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
input: ContactUsInput!@doc(description: "An input object that defines shopper information.")
7
+
): ContactUsOutput@doc(description: "Send a 'Contact Us' email to the merchant.") @resolver(class: "Magento\\ContactGraphQl\\Model\\Resolver\\ContactUs")
8
+
}
9
+
10
+
inputContactUsInput {
11
+
email: String!@doc(description: "The email address of the shopper.")
12
+
name: String!@doc(description: "The full name of the shopper.")
13
+
telephone: String@doc(description: "The shopper's telephone number.")
14
+
comment: String!@doc(description: "The shopper's comment to the merchant.")
15
+
}
16
+
17
+
typeContactUsOutput@doc(description: "Contains the status of the request."){
18
+
status: Boolean!@doc(description: "Indicates whether the request was successful.")
19
+
}
20
+
21
+
typeStoreConfig {
22
+
contact_enabled: Boolean!@doc(description: "Indicates whether the Contact Us form in enabled.")
0 commit comments