Skip to content

IntegrationCategoryType

Integration Category

Fields

description · String · The description of the integration category
id · ID! · required · The unique identifier of the category
name · String · The name of the integration category
options · [IntegrationOptionType!] · The list of category options

Used By

Definition

"""
Integration Category
"""
type IntegrationCategoryType {
"""
The description of the integration category
"""
description: String
"""
The unique identifier of the category
"""
id: ID!
"""
The name of the integration category
"""
name: String
"""
The list of category options
"""
options: [IntegrationOptionType!]
}