feature/IO-3499-React-19 Checkpoint
This commit is contained in:
@@ -31,6 +31,7 @@ export const QUERY_ALL_ACTIVE_APPOINTMENTS = gql`
|
||||
color
|
||||
note
|
||||
job {
|
||||
id
|
||||
scheduled_in
|
||||
scheduled_completion
|
||||
alt_transport
|
||||
@@ -44,7 +45,6 @@ export const QUERY_ALL_ACTIVE_APPOINTMENTS = gql`
|
||||
ownr_ph2_ty
|
||||
ownr_ea
|
||||
clm_total
|
||||
id
|
||||
clm_no
|
||||
ins_co_nm
|
||||
v_model_yr
|
||||
@@ -156,6 +156,7 @@ export const QUERY_APPOINTMENT_BY_DATE = gql`
|
||||
color
|
||||
note
|
||||
job {
|
||||
id
|
||||
alt_transport
|
||||
ro_number
|
||||
ownr_ln
|
||||
@@ -164,7 +165,6 @@ export const QUERY_APPOINTMENT_BY_DATE = gql`
|
||||
ownr_ph2
|
||||
ownr_ea
|
||||
clm_total
|
||||
id
|
||||
clm_no
|
||||
vehicle {
|
||||
id
|
||||
|
||||
@@ -6,6 +6,7 @@ export const QUERY_ALL_ASSOCIATIONS = gql`
|
||||
id
|
||||
active
|
||||
bodyshop {
|
||||
id
|
||||
shopname
|
||||
}
|
||||
}
|
||||
|
||||
@@ -101,9 +101,9 @@ export const QUERY_CONTRACT_BY_PK = gql`
|
||||
ownerid
|
||||
vehicleid
|
||||
owner {
|
||||
id
|
||||
ownr_fn
|
||||
ownr_ln
|
||||
id
|
||||
ownr_co_nm
|
||||
}
|
||||
vehicle {
|
||||
|
||||
@@ -84,10 +84,10 @@ export const QUERY_ALL_CC = gql`
|
||||
scheduledreturn
|
||||
job {
|
||||
id
|
||||
ro_number
|
||||
ownr_fn
|
||||
ownr_ln
|
||||
ownr_co_nm
|
||||
ro_number
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -139,10 +139,10 @@ export const QUERY_CC_BY_PK = gql`
|
||||
status
|
||||
job {
|
||||
id
|
||||
ownr_ln
|
||||
ownr_fn
|
||||
ownr_co_nm
|
||||
ro_number
|
||||
ownr_fn
|
||||
ownr_ln
|
||||
ownr_co_nm
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -48,6 +48,7 @@ export const QUERY_OUTSTANDING_INVENTORY = gql`
|
||||
bill {
|
||||
invoice_number
|
||||
vendor {
|
||||
id
|
||||
name
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2116,6 +2116,7 @@ export const QUERY_GET_TASKS_JOB_DETAILS_BY_ID = gql`
|
||||
bills {
|
||||
id
|
||||
vendor {
|
||||
id
|
||||
name
|
||||
}
|
||||
invoice_number
|
||||
@@ -2123,6 +2124,7 @@ export const QUERY_GET_TASKS_JOB_DETAILS_BY_ID = gql`
|
||||
parts_orders {
|
||||
id
|
||||
vendor {
|
||||
id
|
||||
name
|
||||
}
|
||||
order_number
|
||||
|
||||
@@ -218,6 +218,7 @@ export const QUERY_PARTS_ORDER_OEC = gql`
|
||||
v_model_yr
|
||||
v_vin
|
||||
vehicle {
|
||||
id
|
||||
v_bstyle
|
||||
v_type
|
||||
v_trimcode
|
||||
|
||||
@@ -30,6 +30,7 @@ export const PARTIAL_TASK_FIELDS = gql`
|
||||
bills {
|
||||
id
|
||||
vendor {
|
||||
id
|
||||
name
|
||||
}
|
||||
invoice_number
|
||||
@@ -37,6 +38,7 @@ export const PARTIAL_TASK_FIELDS = gql`
|
||||
parts_orders {
|
||||
id
|
||||
vendor {
|
||||
id
|
||||
name
|
||||
}
|
||||
order_number
|
||||
@@ -51,6 +53,7 @@ export const PARTIAL_TASK_FIELDS = gql`
|
||||
parts_order {
|
||||
id
|
||||
vendor {
|
||||
id
|
||||
name
|
||||
}
|
||||
order_number
|
||||
@@ -59,6 +62,7 @@ export const PARTIAL_TASK_FIELDS = gql`
|
||||
bill {
|
||||
id
|
||||
vendor {
|
||||
id
|
||||
name
|
||||
}
|
||||
invoice_number
|
||||
|
||||
@@ -217,6 +217,7 @@ export const QUERY_TIME_TICKETS_IN_RANGE_SB = gql`
|
||||
) {
|
||||
id
|
||||
joblines(order_by: { line_no: asc }, where: { removed: { _eq: false } }) {
|
||||
id
|
||||
convertedtolbr
|
||||
convertedtolbr_data
|
||||
mod_lb_hrs
|
||||
|
||||
@@ -169,6 +169,15 @@ const link = ApolloLink.from(
|
||||
*/
|
||||
const cache = new InMemoryCache({
|
||||
typePolicies: {
|
||||
users: {
|
||||
keyFields: ["email"]
|
||||
},
|
||||
masterdata: {
|
||||
keyFields: ["key"]
|
||||
},
|
||||
job_conversations: {
|
||||
keyFields: ["conversationid", "jobid"]
|
||||
},
|
||||
Query: {
|
||||
fields: {
|
||||
conversations: {
|
||||
|
||||
Reference in New Issue
Block a user