graphql-engine/server/src-lib/Hasura/Backends/MSSQL
Auke Booij cda117a4a9 Add unless/when related hints
Example:

```
server/src-lib/Hasura/RQL/DDL/Schema/Table.hs:(200,15)-(205,28): Warning: Use when
Found:
  if tnGQL `elem` ns then
      throw400 RemoteSchemaConflicts
        $ "node " <> tnGQL <> " already exists in current graphql schema"
  else
      pure ()
Perhaps:
  when
    (tnGQL `elem` ns)
    (throw400 RemoteSchemaConflicts
       $ "node " <> tnGQL <> " already exists in current graphql schema")
```

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4570
GitOrigin-RevId: 1b04e5e39d20c99643220154c03dae82a025f0f1
2022-05-27 13:34:42 +00:00
..
DDL Fix a /= [] and add hint. 2022-05-27 12:28:24 +00:00
Execute server/mssql: drop the temp table after delete 2022-05-26 15:21:54 +00:00
FromIr replace SQLOperator with ScalarSelectionArguments 2022-05-03 09:00:01 +00:00
Instances server: naming conventions for auto generated fields 2022-05-26 11:55:29 +00:00
Schema Remove RQL/Types.hs 2022-04-27 13:58:47 +00:00
SQL Remove RQL/Types.hs 2022-04-27 13:58:47 +00:00
Types server: naming conventions for auto generated fields 2022-05-26 11:55:29 +00:00
Connection.hs server/MSSQL: Event Delivery System (Incremental PR - 3) 2022-04-21 07:20:34 +00:00
DDL.hs server: naming conventions for auto generated fields 2022-05-26 11:55:29 +00:00
FromIr.hs Tidy up MSSQL.FromIr 2022-03-10 10:34:52 +00:00
Meta.hs Make ForeignKey mappings non-empty 2022-05-10 15:44:46 +00:00
Plan.hs Add unless/when related hints 2022-05-27 13:34:42 +00:00
ToQuery.hs server/postgres + server/mssql: Insert empty objects with default values 2022-05-11 16:01:57 +00:00
Types.hs Add docstrings to the module headers of a few selected mssql modules 2022-01-03 17:17:18 +00:00