Added payments schema and connected to stripe BOD-146 BOD-147

This commit is contained in:
Patrick Fic
2020-06-05 08:20:04 -07:00
parent 90152fc613
commit 52849e1af7
37 changed files with 822 additions and 9 deletions

View File

@@ -31,6 +31,7 @@ export const QUERY_BODYSHOP = gql`
inhousevendorid
accountingconfig
appt_length
stripe_acct_id
employees {
id
first_name
@@ -80,6 +81,7 @@ export const UPDATE_SHOP = gql`
production_config
invoice_tax_rates
appt_length
stripe_acct_id
employees {
id
first_name
@@ -99,3 +101,10 @@ export const QUERY_INTAKE_CHECKLIST = gql`
}
}
`;
export const QUERY_STRIPE_ID = gql`
query QUERY_STRIPE_ID {
bodyshops {
stripe_acct_id
}
}
`;