OBJECT

CustomMetricOverride

A custom metric for a user

link GraphQL Schema definition

  • type CustomMetricOverride {
  • # custom metric
  • custom_metric: CustomMetric
  • # id of the custom metric
  • custom_metric_id: ID
  • # feature toggle id this custom metric belongs to
  • feature_toggle_id: Int
  • # id form helper
  • form_id: String
  • # The unique identifier of the override
  • id: ID!
  • # The name of the custom metric
  • name: String
  • # if yes, show the custom metric
  • show: Boolean!
  • # if yes, show the custom metric to the client
  • show_client: Boolean!
  • # if yes, track the custom metric
  • track: Boolean
  • # user id this custom metric belongs to
  • user_id: Int
  • }