GraphQL
import { QueryInterface } from "sequelize";
module.exports = {
// change the database schema
async up(query: QueryInterface) {
// add migration here
},
// revert in case it goes wrong
async down(query: QueryInterface) {
// revert
}
};Move from models to entities
Build the GraphQL Schema

Return data from the database
Pagination
Writing integration tests
Conclusion
Last updated