fieldCreate

Graphql fields and variables for the fieldCreate mutation

Create a field

Scope required: standard:write

For a complete list of input attributes see the FieldAttributes type

mutation fieldCreate ($attributes: FieldAttributes!) {
  fieldCreate (attributes: $attributes) {
      errors
      field {
        computed
        label
        name
      }
  }
}

Arguments

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

attributes

Response

Name
Type
Description

errors

List (String)

field

Last updated

Was this helpful?