Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wei/amplify-js-7127

Reproduce aws-amplify/amplify-js#7127
https://github.com/wei/amplify-js-7127

Last synced: 19 days ago
JSON representation

Reproduce aws-amplify/amplify-js#7127

Awesome Lists containing this project

README

        

# Trello Amplify

Trello Clone built using React + AWS amplify as a Backend

## Tech used

Front-end libraries:

- React
- React Router

Backend:

- AWS amplify auth
- AWS amplify API

## Notes

```js
// filter for board id

// this doesn't work
// const listData = await API.graphql(graphqlOperation(listLists), {
// variables: { filter: { boardID: { eq: boardID } } },
// });
const listData = await API.graphql({
query: listLists,
variables: { filter: { boardID: { eq: boardID } } },
});
```

## TODO

- [ ] Card Drag and Drop ( Front-end)
- [ ] Persist order in the Backend