API Stability Short-Term

The enableFeatureForOrg() GraphQL mutation may be used to enable a feature for a specific organization in LogScale. To enable a feature for a single user, though, use enableFeatureForUser() .

For more information on enabling and disabling features, see the Enabling & Disabling Feature Flags reference page.

Syntax

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

graphql
enableFeatureForOrg(
      orgId: string!, 
      feature: FeatureFlag!,
      enableFeatureForOrg: boolean
   ): boolean!

To enable a feature for a single organization, enter something like the following:

Show:
graphql
mutation {
   enableFeatureForOrg(
     orgId: "organization-id", 
     feature: OneToManyGroupSynchronization
   )
}
Example Responses
Show:
json
{
  "data": {
    "enableFeatureForOrg": true
  }
}

Set skipVerification to true to skip verification. To enable a feature for a cluster, use instead enableFeature() .

Given Datatypes

For the given datatype, FeatureFlag, there are several parameters that may be given. The table below should list them. However, since they're all beta features, you'll have to click on the "Show Beta Features" button.

Table: FeatureFlag

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Mar 14, 2025