CustomMetric
A custom metric for a user
Fields
custom_module_form
· CustomModuleForm · The associated autoscored custom module form custom_module_form_id
· ID · The ID of the autoscored custom module form 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 { """ The associated autoscored custom module form """ custom_module_form: CustomModuleForm
""" The ID of the autoscored custom module form """ custom_module_form_id: ID
""" 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}