"""Feature flag queries.""" FEATURE_FLAG_QUERY = """ query featureFlag($prefix: String) { account { features(prefix: $prefix) { value feature } } } """ FEATURE_FLAG_LABEL_QUERY = """ query featureFlagLabel($vendorId: Int, $subaccountId: Int!, $prefix: String) { orchardLabel(id: { vendorId: $vendorId, subaccountId: $subaccountId }) { ... on Vendor { features(prefix: $prefix) { value feature } } ... on Subaccount { features(prefix: $prefix) { value feature } } } } """