api/src/apolloClient.ts

Summary

Maintainability
D
1 day
Test Coverage

Function initApolloServer has 193 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const initApolloServer = async app => {
  const { types, queries, mutations, subscriptions } = await extendViaPlugins(
    app,
    resolvers,
    typeDefDetails
Severity: Major
Found in api/src/apolloClient.ts - About 7 hrs to fix

    Function initApolloServer has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
    Open

    export const initApolloServer = async app => {
      const { types, queries, mutations, subscriptions } = await extendViaPlugins(
        app,
        resolvers,
        typeDefDetails
    Severity: Minor
    Found in api/src/apolloClient.ts - About 4 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function onDisconnect has 50 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          async onDisconnect(webSocket: any) {
            const messengerData = webSocket.messengerData;
    
            if (messengerData) {
              const customerId = messengerData.customerId;
    Severity: Minor
    Found in api/src/apolloClient.ts - About 2 hrs to fix

      Function onConnect has 47 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

            onConnect(_connectionParams, webSocket: any, connectionContext: any) {
              webSocket.on('message', async message => {
                const parsedMessage = JSON.parse(message.toString()).id || {};
      
                if (parsedMessage.type === 'messengerConnected') {
      Severity: Minor
      Found in api/src/apolloClient.ts - About 1 hr to fix

        There are no issues that match your filters.

        Category
        Status