Skip to content

ContactTypeOverrideInput

Payload for overriding a contact type

Fields

id · ID · The ID of the contact type override
name · String · The graphql_name of the contact type
position · Int · The position of the contact type
show · Boolean · Whether or not to show the contact type

Used By

Definition

"""
Payload for overriding a contact type
"""
input ContactTypeOverrideInput {
"""
The ID of the contact type override
"""
id: ID
"""
The graphql_name of the contact type
"""
name: String
"""
The position of the contact type
"""
position: Int
"""
Whether or not to show the contact type
"""
show: Boolean
}