Plan Reservations
Create plan reservations to hard allocate supply to demand.
Last updated
Was this helpful?
Create plan reservations to hard allocate supply to demand.
Last updated
Was this helpful?
Was this helpful?
mutation CreatePlanReservation($input: CreatePlanReservationInput!) {
createPlanReservation(input: $input) {
planReservation {
id
partInventoryId
planId
quantity
}
}
}query GetPlanReservations($filters: PlanReservationsInputFilters, $sort: [PlanReservationSortEnum]) {
planReservations(sort: $sort, filters: $filters) {
edges {
node {
id
plan {
id
name
}
partInventory {
id
lotNumber
part {
partNumber
description
}
runs {
id
}
serialNumber
}
quantity
}
}
}
}mutation DeletePlanReservation($id: ID!, $etag: String!) {
deletePlanReservation(id: $id, etag: $etag) {
id
}
}{
"id": <id>,
"etag": <etag>
}