- Update to GraphQL 16
- Fix: only filter out GraphQL reserved names (#116), thanks to @n3n
- Feature: Support skipping count aggregate on hasura (#120), thanks to @mohammad-bolt
- Fix dependency issue
- Upgrade library and sample to React Admin v4, thanks to @LucaColonnello
- Example: Add Example v3 App
- Feature: _nin operator (#89), thanks to @fkowal
- Feature: Enable support for _contains operator and nested path in jsonb joins, thanks to @fkowal
- Feature: Support nested fields when sorting by multiple columns, thanks to @daa
- Bug Fix: buildFields types (#91), thanks to @cpv123
- Bug Fix: Keep null values when sanitizing resources (#97), thanks to @nselikoff
- Bug Fix: Variables for mutations are not being populated, thanks to @nselikoff
- Full Typescript rewrite thanks to Chris Vibert @cpv123
- Bug Fix: Update only includes edited fields
- Feature: Support sorting by multiple fields
- Bug Fix: Return dataProvider object, not function
- Bug fix: nested keys with array values
- Feature: Update only permitted fields.
- Feature: Add option for custom aggregate field names.
- Feature: Reference a nested object in a reference field.
- Bug Fix: Issue in sanitizing a null value in an array.
- Feature: Add support for nested field filtering
- Bug Fix: Fix issue with null / dates
- Bug Fix: Fix error with react-admin 1.13.0 for date inputs
- Breaking change: This release is a complete rewrite of the library, replacing the API with code from
ra-data-hasura-graphql
library. Thesteams/ra-data-hasura-graphql
will henceforth be archived. ReferREADME.md
for usage instructions.
- Bug Fix: Translate id to primary key for custom primary keys.
- Bug Fix: Respect primary key on order by.
- Bug Fix: Fix typo in GET_MANY_REFERENCE.
- Bug Fix: Set
asc
as default sorting order in GET_LIST.
- Bug Fix: Re-build library to fix discrepancies. Pass
where
arguments tocount
query. - Feature: Add support for httpClient to pass in dynamic headers. Backwards compatibility maintained for static headers.
- Update package dependencies.
- Bug Fix: Fix sort order, fix primary key when response not an array and add filters to GET_* operations.
- Feature: Support specifying primary keys other than id for tables using a config object
Example:
const config = { 'primaryKey': {'author': 'name'} }
- Feature: Support multiple schemas using "." separator.
Example:
<Resource name="schema.table" />
- Bug Fix: Fix count query to support UUID
- Bug Fix: GET_MANY_REFERENCE definition
- Add support for hasura data provider