Added loading of documents thumbnails

This commit is contained in:
Patrick Fic
2020-12-09 20:45:45 -08:00
parent ee77860112
commit 2efac1ed2b
9 changed files with 134 additions and 24 deletions

View File

@@ -329,7 +329,6 @@ export const GET_JOB_BY_PK = gql`
ownr_ph1
}
labor_rate_desc
rate_la1
rate_la2
rate_la3
@@ -387,15 +386,6 @@ export const GET_JOB_BY_PK = gql`
lbr_amt
op_code_desc
}
payments {
id
amount
payer
created_at
stripeid
transactionid
memo
}
notes(order_by: { created_at: desc }) {
id
text
@@ -404,6 +394,12 @@ export const GET_JOB_BY_PK = gql`
created_at
updated_at
}
documents(order_by: { created_at: desc }) {
id
name
key
created_at
}
}
}
`;