update_certification_project#

Partially update a certification project.

Arguments#

id | ObjectID required

ObjectID ID of the resource.

input | Certification Project

Returns#

response_type | single

response_object | Certification Project

Mutation example:

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

    data {
      _id
    }
  }
}