ashavijit / fastify-apollo-nodejs

Blazing-Fast API using Fastify-Mercurius

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fast Blazing Server API

This is a simple API that allows you to create a blazing fast server in a few lines of code.

Tech Stack

Query Examples

mutation {
  createPost(data: {
    title: "My New Post",
    body: "This is the content of my new post",
    category: "Technology",
    published: true
  }) {
    id
    title
    body
    category
    published
  }
}

About

Blazing-Fast API using Fastify-Mercurius


Languages

Language:JavaScript 100.0%