ra-aws-amplify icon indicating copy to clipboard operation
ra-aws-amplify copied to clipboard

🎩 Create backends for your aws-amplify project at the speed of light with react-admin

Results 39 ra-aws-amplify issues
Sort by recently updated
recently updated
newest added

[All sorts of data access patterns are supported](https://aws-amplify.github.io/docs/cli-toolchain/graphql#data-access-patterns) with DynamoDB given the right schema. Problem is, it's not a generic solution to filtering which this package aims to provide. This...

enhancement

Currently the infrastructure is in place, though the pagination doesn't actually work - just refetches the first 10. Now `nextToken` is stored in redux, it needs to be pulled out...

enhancement
help wanted
good first issue

Bumps [http-proxy](https://github.com/http-party/node-http-proxy) from 1.18.0 to 1.18.1. Changelog Sourced from http-proxy's changelog. v1.18.1 - 2020-05-17 Merged Skip sending the proxyReq event when the expect header is present [#1447](https://github.com/http-party/node-http-proxy/issues/1447) Remove node6 support,...

dependencies

In the example, a post can have many editors. ```graphql type Post @model { id: ID! title: String! content: String editors: [PostEditor] @connection(name: "PostEditors") } type PostEditor @model { id:...

documentation

We can probably switch out the `GET_LIST` query from `listPosts` to `searchPosts` and build the correct filter structure for graphql if there's a conventional query parameter for searching. `q` as...

enhancement
good first issue

There are ts `any`s all over the place - total madness - while I tinkered to get this working. Have to go back through and strongly type everything.

chore

Test coverage possible via hooks, use `@testing-library/react-hooks`. `useAuth()` - test error when not inside provider. Potentially refactor to `checkContext` function and isolate that test. - Mock `@aws-amplify/Auth` and test value...

Test coverage for; `nextTokenReducer` - an easy unit test, call it with {type: undefined}, expect null return - call it with `{ type: CRUD_GET_LIST_SUCCESS, payload: {nextToken: undefined} }` - expect...

good first issue

Plenty of great inspiration in the [`ra-data-graphcool`](https://github.com/marmelab/react-admin/tree/master/packages/ra-data-graphcool/src) package. Just a pain to cover all bases. Use `jest --watch --coverage` to find out which lines aren't being covered!