In progress changes for Kanban Board and updated schema migrations. Performed some cleanup.
This commit is contained in:
24
client/src/graphql/bodyshop.queries.js
Normal file
24
client/src/graphql/bodyshop.queries.js
Normal file
@@ -0,0 +1,24 @@
|
||||
import { gql } from "apollo-boost";
|
||||
|
||||
export const QUERY_BODYSHOP = gql`
|
||||
query QUERY_BODYSHOP {
|
||||
bodyshops(where: { associations: { active: { _eq: true } } }) {
|
||||
address1
|
||||
address2
|
||||
city
|
||||
country
|
||||
created_at
|
||||
email
|
||||
federal_tax_id
|
||||
id
|
||||
insurance_vendor_id
|
||||
logo_img_path
|
||||
md_ro_statuses
|
||||
shopname
|
||||
state
|
||||
state_tax_id
|
||||
updated_at
|
||||
zip_post
|
||||
}
|
||||
}
|
||||
`;
|
||||
Reference in New Issue
Block a user