fieldUpdate

Graphql fields and variables for the fieldUpdate mutation

Update a field

Scope required: standard:write

For a complete list of input attributes see the FieldAttributes type

mutation fieldUpdate ($id: ID!, $attributes: FieldAttributes!) {
  fieldUpdate (id: $id, attributes: $attributes) {
      errors
      field {
        computed
        label
        name
      }
  }
}

Arguments

{
  "id": "456123",
  "attributes": {
    "id": "456123",
    "objId": "456123",
    "name": "",
    "kind": "",
    "description": "",
    "label": "",
    "required": true
  }
}
Name
Type
Description

id

ID

attributes

Response

Name
Type
Description

errors

List (String)

field

Last updated

Was this helpful?