IO-2481 Parts Queue Query

Adjust query to only show converted Jobs
This commit is contained in:
Allan Carr
2023-11-27 10:13:43 -08:00
parent 6570d38719
commit 742d2b5ff2

View File

@@ -60,7 +60,7 @@ export const QUERY_PARTS_QUEUE = gql`
}
}
jobs(
where: { _and: [{ status: { _in: $statuses } }] }
where: { _and: [{ status: { _in: $statuses }, converted: { _eq: true} }] }
offset: $offset
limit: $limit
order_by: $order