Skip to content

CustomMetricInput

Payload for a custom metric

Fields

_destroy · Boolean · Whether or not to destroy the custom metric
id · ID · The id of the custom metric
name · String · The graphql_name of the custom metric
show · Boolean · Whether or not to show the custom metric
show_client · Boolean · Whether or not to show the custom metric to the client
track · Boolean · Whether or not to track the custom metric

Used By

Definition

"""
Payload for a custom metric
"""
input CustomMetricInput {
"""
Whether or not to destroy the custom metric
"""
_destroy: Boolean
"""
The id of the custom metric
"""
id: ID
"""
The graphql_name of the custom metric
"""
name: String
"""
Whether or not to show the custom metric
"""
show: Boolean
"""
Whether or not to show the custom metric to the client
"""
show_client: Boolean
"""
Whether or not to track the custom metric
"""
track: Boolean
}