GithubHelp home page GithubHelp logo

tomohidemiya / kgraphql Goto Github PK

View Code? Open in Web Editor NEW

This project forked from apurebase/kgraphql

0.0 1.0 0.0 2.54 MB

Pure Kotlin GraphQL implementation

Home Page: https://kgraphql.io

License: MIT License

Shell 0.04% Java 0.03% Kotlin 96.90% HTML 3.03%

kgraphql's Introduction

KGraphQL

Maven Central Awesome Kotlin Badge Chat

KGraphQL is a Kotlin implementation of GraphQL. It provides a rich DSL to set up the GraphQL schema.

data class Article(val id: Int, val text: String)

fun main() {
    val schema = KGraphQL.schema {
        query("article") {
            resolver { id: Int?, text: String ->
                Article(id ?: -1, text)
            }
        }
        type<Article> {
            property<String>("fullText") {
                resolver { article: Article ->
                    "${article.id}: ${article.text}"
                }
            }
        }
    }

    schema.execute("""
        {
            article(id: 5, text: "Hello World") {
                id
                fullText
            }
        }
    """.trimIndent()).let(::println)
}

Documentation

See the documentation for a more detailed explanation of the library.

Contributing

All contributions are welcome. Feel free to open issues and PRs!

Building

To build KGraphQL you only need to have JDK8 installed. invoke

./gradlew build

To perform local build.

Versioning

The versioning is following Semantic Versioning

Links

Specification : http://facebook.github.io/graphql/

License

KGraphQL is Open Source software released under the MIT license

kgraphql's People

Contributors

jeggy avatar pgutkowski avatar allali84 avatar bertrand avatar nidomiro avatar eschouten avatar brunnogrillo avatar alexeysoshin avatar mdnorman avatar sugasaki avatar saintmalik avatar swiftrs avatar nikkyai avatar nielsvanvelzen avatar netag avatar pabl0rg avatar vemilyus avatar rim-k avatar andreasvolkmann avatar brunno-grillo-afterverse avatar dkharlan avatar lorefnon avatar kimar avatar nasindustrie avatar nathanpb avatar ryanzidago avatar sondrele avatar xapphire13 avatar tobias-walle avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.