API Stability Short-Term

The deleteFeatureFlag() GraphQL mutation may be used to delete a feature flag in LogScale.

For more information on enabling and disabling features, see the Enabling & Disabling Feature Flags reference page. In particular, read the section on flaging them, Using Configuration Settings.

Syntax

Below is the syntax for the deleteFeatureFlag() mutation field:

graphql
deleteFeatureFlag(
     feature: string!
   ): boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  deleteFeatureFlag(
     feature: "somefeature", 
  )
}