gqlConfig: ValueObject<{
    graphqlGuiEnabled: (() => boolean);
    port: (() => number);
}> = ...

The basic GraphQL Configuration type

Type declaration

  • graphqlGuiEnabled: (() => boolean)
      • (): boolean
      • Returns boolean

        Example

        GRAPHQL_GUI_ENABLED=true
        
  • port: (() => number)
      • (): number
      • Returns number

        Example

        PORT=8080
        

Generated using TypeDoc