Configure operators
Operators manage pickup point locations. On Delivery Gateway, you can configure two things for the available operators: a title that allows easier identification and a priority.
Use the updateOperatorConfigurations mutation to modify these settings for an operator. It requires:
- An
operator: you can see the available options at OperatorEnum. - A
keyand avaluefield for each setting: the respective keys arePRIORITYandTITLE.
GraphQL mutation
mutation {
updateOperatorConfigurations(
input: [
{
operator: MOE,
key: PRIORITY,
value: "1"
},
{
operator: MOE,
key: TITLE,
value: "Most Excellent Operator"
}
]
)
}