8000 GitHub - kasodeep/springboot-graphql
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

kasodeep/springboot-graphql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot GraphQL App

This Spring Boot application provides a GraphQL API for managing authors and books.

Schema

Author Type

type Author {
  id: ID!
  name: String
  books: [Book]
}

How to make a request.

mutation CreateAuthor($author: AuthorInput){
    createAuthor(author: $author) {
        # Data to be returned.
        name        
    }
}
{
    "author": {
        "name":"Kumbhojkar"
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0