A11yWatch/a11ywatch-core

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

Summary

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

export const analytic = gql`
  """
  Website analytics that help build graphs.
  """
  type Analytic {
    _id: ID
    domain: String
    pageUrl: String
    errorCount: Int
    warningCount: Int
    noticeCount: Int
    userId: Int
    accessScore: Float
    possibleIssuesFixedByCdn: Int
    totalIssues: Int
    issuesFixedByCdn: Int
  }
`;