adding new fields for address validation of google
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -17,7 +17,12 @@ query listTaxForms($offset: Int, $limit: Int) @auth(level: USER) {
|
||||
email
|
||||
phone
|
||||
address
|
||||
placeId
|
||||
latitude
|
||||
longitude
|
||||
city
|
||||
street
|
||||
country
|
||||
apt
|
||||
state
|
||||
zipCode
|
||||
@@ -61,7 +66,12 @@ query getTaxFormById($id: UUID!) @auth(level: USER) {
|
||||
email
|
||||
phone
|
||||
address
|
||||
placeId
|
||||
latitude
|
||||
longitude
|
||||
city
|
||||
street
|
||||
country
|
||||
apt
|
||||
state
|
||||
zipCode
|
||||
@@ -114,7 +124,12 @@ query getTaxFormsByStaffId(
|
||||
email
|
||||
phone
|
||||
address
|
||||
placeId
|
||||
latitude
|
||||
longitude
|
||||
city
|
||||
street
|
||||
country
|
||||
apt
|
||||
state
|
||||
zipCode
|
||||
@@ -173,7 +188,12 @@ query listTaxFormsWhere(
|
||||
email
|
||||
phone
|
||||
address
|
||||
placeId
|
||||
latitude
|
||||
longitude
|
||||
city
|
||||
street
|
||||
country
|
||||
apt
|
||||
state
|
||||
zipCode
|
||||
|
||||
Reference in New Issue
Block a user