/fastify-apollo-nodejs

Blazing-Fast API using Fastify-Mercurius

Primary LanguageJavaScript

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
  }
}