Grouping of feature flags #3243
Answered
by
hoerup
NicklasWallgren
asked this question in
Q&A
-
Is it possible to group feature flags by application or separate them in a way that the Example; # First flag associated with an application called app1
app1:first-flag:
variations: # All possible return value for your feature flag
A: false
B: true
targeting:
- query: application eq "app1"
# Second flag associated with an application called app2
app2:second-flag:
variations:
A: "valueA"
B: "valueB"
defaultValue: "a default value"
targeting:
- query: application eq "app2" |
Beta Was this translation helpful? Give feedback.
Answered by
hoerup
Apr 30, 2025
Replies: 1 comment
-
try to look at this spec proposal: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
thomaspoignant
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
try to look at this spec proposal:
#2734