Jobslines schema. Added phone number formatting.
This commit is contained in:
11
client/src/graphql/jobs-lines.queries.js
Normal file
11
client/src/graphql/jobs-lines.queries.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { gql } from "apollo-boost";
|
||||
|
||||
export const GET_JOB_LINES_BY_PK = gql`
|
||||
query GET_JOB_LINES_BY_PK($id: uuid!) {
|
||||
joblines(where: { jobid: { _eq: $id } }) {
|
||||
id
|
||||
line_ind
|
||||
line_desc
|
||||
}
|
||||
}
|
||||
`;
|
||||
Reference in New Issue
Block a user