graphql-engine/server/src-lib/Hasura/RQL
Rakesh Emmadi 91376316f2 breaking: encode bigint and bigserial postgres types as strings in response (fix #633) (#640)
This is breaking change where bigint and bigserial Postgres types will be encoded as GraphQL String types, as opposed to Int as present in earlier releases.

Input types were already encoded as String.

This is achieved by selecting `bigint` and `bigserial` columns as `text`s in the SQL query: `select "big_id"::text ..` instead of `select "big_id" .. `.

Reason for that change is outlined in #633 where JavaScript cannot decode 64 bit Integers.
2018-10-05 10:46:21 +05:30
..
DDL fix non-admin insert returns null column values when query affects zero rows in postgres (fix #563) (#565) 2018-09-29 11:12:47 +05:30
DML breaking: encode bigint and bigserial postgres types as strings in response (fix #633) (#640) 2018-10-05 10:46:21 +05:30
Types add custom headers for webhooks, refactor retry logic (#419) 2018-09-24 17:20:11 +05:30
GBoolExp.hs allow _is_null operator for filter/check permissions (close #456) (#477) 2018-09-18 17:15:35 +05:30
Instances.hs move raven into graphql-engine repo 2018-06-28 00:32:00 +05:30
Types.hs add custom headers for webhooks, refactor retry logic (#419) 2018-09-24 17:20:11 +05:30