Skip to content

featureFlags

Get the listed values of feature flags for the current user

Arguments

flag_names · [String!] · List of flag names to fetch

Returns

[FeatureFlag!]

Example

query featureFlags($flag_names: [String!]) {
featureFlags(flag_names: $flag_names) {
enabled
name
}
}