# fieldUpdate

Update a field

**Scope required:** standard:write

For a complete list of input attributes see the [FieldAttributes](https://docs.bunny.com/developer/api-reference/types/fieldattributes) type

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

## Arguments

```json
{
  "id": "456123",
  "attributes": {
    "id": "456123",
    "objId": "456123",
    "name": "",
    "kind": "",
    "description": "",
    "label": "",
    "required": true
  }
}
```

| Name       | Type                                                                                    | Description |
| ---------- | --------------------------------------------------------------------------------------- | ----------- |
| id         | ID                                                                                      |             |
| attributes | [FieldAttributes](https://docs.bunny.com/developer/api-reference/types/fieldattributes) |             |

## Response

| Name   | Type                                                                | Description |
| ------ | ------------------------------------------------------------------- | ----------- |
| errors | List (String)                                                       |             |
| field  | [Field](https://docs.bunny.com/developer/api-reference/types/field) |             |
