adding new fields for address validation of google

This commit is contained in:
José Salazar
2026-02-11 15:43:47 -05:00
parent 8a84117871
commit 88ea396c31
9 changed files with 162 additions and 5 deletions

View File

@@ -9,9 +9,14 @@ mutation createTaxForm(
$email: String
$phone: String
$address: String!
$placeId: String
$latitude: Float
$longitude: Float
$city: String
$apt: String
$state: String
$street: String
$country: String
$zipCode: String
# W-4
@@ -51,9 +56,14 @@ mutation createTaxForm(
email: $email
phone: $phone
address: $address
placeId: $placeId
latitude: $latitude
longitude: $longitude
city: $city
apt: $apt
state: $state
street: $street
country: $country
zipCode: $zipCode
marital: $marital
@@ -94,9 +104,14 @@ mutation updateTaxForm(
$email: String
$phone: String
$address: String
$placeId: String
$latitude: Float
$longitude: Float
$city: String
$apt: String
$state: String
$street: String
$country: String
$zipCode: String
# W-4
@@ -136,9 +151,14 @@ mutation updateTaxForm(
email: $email
phone: $phone
address: $address
placeId: $placeId
latitude: $latitude
longitude: $longitude
city: $city
apt: $apt
state: $state
street: $street
country: $country
zipCode: $zipCode
marital: $marital