query SuggestionByTable()

in src/deequ-constraints/src/graphql/queries.js [81:107]


  query SuggestionByTable(
    $tableHashKey: String
    $sortDirection: ModelSortDirection
    $filter: ModelDataQualitySuggestionFilterInput
    $limit: Int
    $nextToken: String
  ) {
    suggestionByTable(
      tableHashKey: $tableHashKey
      sortDirection: $sortDirection
      filter: $filter
      limit: $limit
      nextToken: $nextToken
    ) {
      items {
        id
        constraint
        constraintCode
        column
        enable
        tableHashKey
        createdAt
        updatedAt
      }
      nextToken
    }
  }