update_vendor#

Partially update a vendor.

Arguments#

id | ObjectID required

ObjectID ID of the resource.

input | Container Vendor

Returns#

response_type | single

response_object | Container Vendor

Mutation example:

mutation {
  update_vendor(id: "6304c560cbb2b2d2d4053b8e", input: {}) {
    error {
      detail
      status
    }

    data {
      _id
    }
  }
}