IO-1817 Delete existing bill line.

This commit is contained in:
Patrick Fic
2022-04-13 14:49:33 -07:00
parent 77ed64969e
commit 1eacf43669
3 changed files with 26 additions and 5 deletions

View File

@@ -12,6 +12,13 @@ export const UPDATE_BILL_LINE = gql`
}
}
`;
export const DELETE_BILL_LINE = gql`
mutation DELETE_BILL_LINE($id: uuid!) {
delete_billlines_by_pk(id: $id) {
id
}
}
`;
export const INSERT_NEW_BILL_LINES = gql`
mutation INSERT_NEW_BILL_LINES($billLines: [billlines_insert_input!]!) {