Merged in feature/IO-3037-Supplement-Existing-Lines (pull request #1957)

IO-3037 Supplement Existing Lines

Approved-by: Dave Richer
This commit is contained in:
Allan Carr
2024-11-27 16:47:52 +00:00
committed by Dave Richer

View File

@@ -2,7 +2,7 @@ import { gql } from "@apollo/client";
export const GET_ALL_JOBLINES_BY_PK = gql`
query GET_ALL_JOBLINES_BY_PK($id: uuid!) {
joblines(where: { jobid: { _eq: $id } }, order_by: { line_no: asc }) {
joblines(where: { jobid: { _eq: $id }, removed: { _eq: false } }, order_by: { line_no: asc }) {
id
line_no
unq_seq