graphql-engine/server/src-lib/Hasura/GraphQL
Rakesh Emmadi 5bafdce9a3 fix delete mutation returning incorrect data (fix #1794) (fix #1763) (#1827)
From `alpha-40` we've been using a `WHERE` clause to fetch required rows and generate mutation response. This has a few limitations like the requirement of a primary key/unique constraint. This also returns inconsistent data on `delete` mutation as mentioned in #1794. 
Now, we're using `VALUES (..)` (refer [here](https://www.postgresql.org/docs/current/sql-values.html)) expression to form virtual table rows in `SQL` to generate mutation response.

Internal changes:-
- Not to use primary key/unique constraint columns:-
  - Revert back to `ConstraintName` from `TableConstraint` in `TableInfo` type
  - Remove `tcCols` field in `TableConstraint` type
  - Modify `table_info.sql` and `fetchTableMeta` function `SQL`
- A test case to perform `delete` mutation and returning relational objects.
2019-03-22 12:38:42 +05:30
..
Resolve fix delete mutation returning incorrect data (fix #1794) (fix #1763) (#1827) 2019-03-22 12:38:42 +05:30
Transport use bytestring builder to represent encoded json (#1800) 2019-03-18 21:52:21 +05:30
Validate add type, variable information to input value's ast (close #21) (#1809) 2019-03-20 12:01:49 +05:30
Context.hs fix delete mutation returning incorrect data (fix #1794) (fix #1763) (#1827) 2019-03-22 12:38:42 +05:30
Explain.hs use bytestring builder to represent encoded json (#1800) 2019-03-18 21:52:21 +05:30
RemoteServer.hs support union and interface types in remote schema (close #1276) (#1361) 2019-01-28 22:15:10 +05:30
Resolve.hs use bytestring builder to represent encoded json (#1800) 2019-03-18 21:52:21 +05:30
Schema.hs fix delete mutation returning incorrect data (fix #1794) (fix #1763) (#1827) 2019-03-22 12:38:42 +05:30
Utils.hs refactor event processing logic (#1639) 2019-02-22 17:55:36 +05:30
Validate.hs refactor to remove warnings especially with orphan instances (#1163) 2018-12-13 12:56:15 +05:30