support any type for id column in ra-data-hasura (close #1443) (#1451)

This commit is contained in:
Praveen Durairaj 2019-01-24 09:36:45 +05:30 committed by Shahidh K Muhammed
parent a39fd047f0
commit a67346458d
4 changed files with 9 additions and 5 deletions

View File

@ -1,7 +1,11 @@
## 0.0.3 (January 24, 2019)
- Bug Fix: Fix count query to support UUID
## 0.0.2 (January 20, 2019)
### Bug Fix: GET_MANY_REFERENCE definition
- Bug Fix: GET_MANY_REFERENCE definition
## 0.0.1 (January 19, 2019)
### Add support for hasura data provider
- Add support for hasura data provider

View File

@ -1,6 +1,6 @@
{
"name": "ra-data-hasura",
"version": "0.0.1",
"version": "0.0.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "ra-data-hasura",
"version": "0.0.2",
"version": "0.0.3",
"description": "react-admin data provider for Hasura GraphQL Engine",
"main": "lib/ra-data-hasura.min.js",
"scripts": {

View File

@ -16,7 +16,7 @@ const countQuery = {
type: 'count',
args: {
table: '',
where: { id: { '$gt': 0 }}
where: { id: { '$ne': null }}
}
};