Skip to main content

customFieldCategoryCreate

Creates a custom field category.

mutation CustomFieldCategoryCreate(
$name: String!,
$type: CustomFieldCategoryType!,
$key: String!
) {
customFieldCategoryCreate(input: {
name: $name,
type: $type,
key: $key
}) {
errors {
message
path
}
category {
id
}
}
}
customFieldCategoryCreate(
input: CustomFieldCategoryCreateInput!
): CustomFieldCategoryCreatePayload

Arguments

customFieldCategoryCreate.input ● CustomFieldCategoryCreateInput! non-null input common

Parameters for CustomFieldCategoryCreate

Type

CustomFieldCategoryCreatePayload object common

Autogenerated return type of CustomFieldCategoryCreate