Skip to content

ranjeet-floyd/graphql-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Graphql in Java

Run

mvn clean install ; mvn jetty:run
go to => localhost:8080

Graphql

    mutation {
    createLink(url: "http:test.com", description: "test") {
        url
        description
    }
    }

    # {
    #   allLinks {
    #     url
    #     description
    #   }
    # }