Skip to content

CustomMetric

A custom metric for a user

Fields

feature_toggle_id · Int · feature toggle id this custom metric belongs to
high_warning_threshold · Int · The high end of the normal range
id · ID! · required · The unique identifier of the metric
low_warning_threshold · Int · The low end of the normal range
name · String · The name of the custom metric
should_show · Boolean · if yes, should show based on if there is custom metric override
should_show_client · Boolean · if yes, should show the client based on if there is a custom metric override
show · Boolean! · required · if yes, show the custom metric
show_client · Boolean! · required · if yes, show the custom metric to client
track · Boolean! · required · if yes, track the custom metric
user_id · Int · user id this custom metric belongs to

Used By

Definition

"""
A custom metric for a user
"""
type CustomMetric {
"""
feature toggle id this custom metric belongs to
"""
feature_toggle_id: Int
"""
The high end of the normal range
"""
high_warning_threshold: Int
"""
The unique identifier of the metric
"""
id: ID!
"""
The low end of the normal range
"""
low_warning_threshold: Int
"""
The name of the custom metric
"""
name: String
"""
if yes, should show based on if there is custom metric override
"""
should_show: Boolean
"""
if yes, should show the client based on if there is a custom metric override
"""
should_show_client: Boolean
"""
if yes, show the custom metric
"""
show: Boolean!
"""
if yes, show the custom metric to client
"""
show_client: Boolean!
"""
if yes, track the custom metric
"""
track: Boolean!
"""
user id this custom metric belongs to
"""
user_id: Int
}