Trello Clone built using React + AWS amplify as a Backend
Front-end libraries:
- React
- React Router
Backend:
- AWS amplify auth
- AWS amplify API
// 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 } } },
});
- Card Drag and Drop ( Front-end)
- Persist order in the Backend