planFeatureUpdate

Graphql fields and variables for the planFeatureUpdate mutation

Update a plan feature

Scope required: product:write

For a complete list of input attributes see the PlanFeatureAttributes type

mutation planFeatureUpdate ($id: ID!, $attributes: PlanFeatureAttributes!) {
  planFeatureUpdate (id: $id, attributes: $attributes) {
      errors
      planFeature {
        createdAt
        featureId
        id
        planId
        updatedAt
        value
      }
  }
}

Arguments

{
  "id": "456123",
  "attributes": {
    "id": "456123",
    "planId": "",
    "featureId": "",
    "value": ""
  }
}
Name
Type
Description

id

ID

Response

Name
Type
Description

errors

List (String)

planFeature

Last updated

Was this helpful?