A11yWatch/a11ywatch-core

View on GitHub
src/core/graph/gql_types/feature.ts

Summary

Maintainability
A
0 mins
Test Coverage
import gql from "graphql-tag";

export const feature = gql`
  """
  Feature toggle. [Deprecated - not currently used]
  """
  type Feature {
    id: ID
    feature: String
    enabled: Boolean
    user: [User]
    accountType: String
  }
`;