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 low_warning_threshold
· Int
· The low end of the normal range 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 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}