GraphQL Mutation Form
This form uses GraphQL mutations to submit data, presenting a unique challenge for autofill systems that expect traditional form submissions.
Success! Mutation executed successfully! The secret is: dumbledore
Error!
User
id: ID!
firstName: String!
lastName: String!
email: String!
phone: String
address: Address
paymentMethod: PaymentMethod
agreeToTerms: Boolean!
Address
street: String!
city: String!
state: String!
zipCode: String!
country: String!
PaymentMethod
cardholderName: String!
cardNumber: String!
expiryDate: String!
cvv: String!
CreateUserInput
firstName: String!
lastName: String!
email: String!
password: String!
phone: String
address: AddressInput
paymentMethod: PaymentMethodInput
agreeToTerms: Boolean!
AddressInput
street: String!
city: String!
state: String!
zipCode: String!
country: String!
PaymentMethodInput
cardholderName: String!
cardNumber: String!
expiryDate: String!
cvv: String!