Skip to main content

Feature

No description

type Feature {
name: String!
description: String!
createdAt: String!
enabled: Boolean!
}

Fields

Feature.name ● String! non-null scalar

The feature flag's name/key.

Feature.description ● String! non-null scalar

Never populated: the resolver builds each row from the toggle name alone, so this non-null field resolves to null and collapses the enclosing Feature to null. No caller selects it.

Feature.createdAt ● String! non-null scalar

Never populated, like description; selecting it collapses the enclosing Feature to null.

Feature.enabled ● Boolean! non-null scalar

Whether the flag is enabled for the given context.

Returned By

userFlagsByContext query