DeveloperBreeze

Api Design Development Tutorials, Guides & Insights

Unlock 3+ expert-curated api design tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your api design skills on DeveloperBreeze.

REST API Cheatsheet: Comprehensive Guide with Examples

Cheatsheet August 24, 2024

No preview available for this content.

Building a GraphQL API with Node.js and Apollo Server

Tutorial August 12, 2024
javascript nodejs graphql

Once you have a basic GraphQL server set up, you can explore more advanced features such as arguments, variables, and real-time subscriptions.

GraphQL allows you to pass arguments to fields and use variables in queries for dynamic data fetching.

GraphQL API Server with Node.js and Apollo Server

Code August 12, 2024
nodejs graphql

Create an index.js file and add the following code:

const express = require('express');
const { ApolloServer, gql } = require('apollo-server-express');

// Sample data
let books = [
    { title: 'The Great Gatsby', author: 'F. Scott Fitzgerald' },
    { title: 'To Kill a Mockingbird', author: 'Harper Lee' },
];

// GraphQL schema definition
const typeDefs = gql`
    type Book {
        title: String!
        author: String!
    }

    type Query {
        books: [Book]
    }

    type Mutation {
        addBook(title: String!, author: String!): Book
    }
`;

// GraphQL resolvers
const resolvers = {
    Query: {
        books: () => books,
    },
    Mutation: {
        addBook: (_, { title, author }) => {
            const newBook = { title, author };
            books.push(newBook);
            return newBook;
        },
    },
};

// Create Apollo server
const server = new ApolloServer({ typeDefs, resolvers });

const app = express();
server.applyMiddleware({ app });

app.listen({ port: 4000 }, () =>
    console.log(`🚀 Server ready at http://localhost:4000${server.graphqlPath}`)
);