Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/wei/amplify-js-7127
- Owner: wei
- Created: 2020-11-08T05:26:18.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-08T05:28:09.000Z (about 4 years ago)
- Last Synced: 2024-10-04T06:41:10.358Z (about 1 month ago)
- Language: CSS
- Size: 548 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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