This project provides a simple GraphQL-based CRUD (Create, Read, Update, Delete) API using Apollo Server, Express, and SQLite as the database. With TypeScript for static typing.
Node.js
npm install
yarn build
yarn dev
Navigate to http://localhost:4000 in your web browser to access the Apollo Server Playground.
GraphQL Operations
mutation {
addItem(name: "Sample Item") {
id
name
}
}
query {
items {
id
name
}
}