scandipwa / contact-graphql
Contact-specific modifications for ScandiPWA
Installs: 143 638
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 2
Type:magento2-theme
Requires
- magento/framework: *
- magento/module-contact: *
This package is auto-updated.
Last update: 2025-03-01 00:33:31 UTC
README
This module provides GraphQL endpoints for Magento_Contact module.
Endpoint description
contactPageConfig
This endpoint allows getting whether Contact Us is enabled.
query GetContactPageConfig { contactPageConfig { enabled } }
{ "contactPageConfig": { "enabled": true } }
contactForm
This endpoint allows sending mail message from customer
mutation ContactForm(contact: ContactForm!) { contactForm(contact: ContactForm!) { message: String } }
{ "contactForm": { "message": "success" } }