Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 322 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 322 Bytes

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