in src/deequ-constraints/src/graphql/queries.js [110:135]
query AnalyzerByTable(
$tableHashKey: String
$sortDirection: ModelSortDirection
$filter: ModelDataQualityAnalyzerFilterInput
$limit: Int
$nextToken: String
) {
analyzerByTable(
tableHashKey: $tableHashKey
sortDirection: $sortDirection
filter: $filter
limit: $limit
nextToken: $nextToken
) {
items {
id
analyzerCode
column
enable
tableHashKey
createdAt
updatedAt
}
nextToken
}
}