aPureBase / KGraphQL

Pure Kotlin GraphQL implementation
https://kgraphql.io
MIT License
298 stars 58 forks source link

WIP: Alternative Idea to multiple Endpoints #193

Closed MaaxGr closed 1 year ago

MaaxGr commented 2 years ago

Allows multiple plugin installations:

install(GraphQL.FeatureInstance("graphql1")) {
 endpoint = "/graphql1"
}

install(GraphQL.FeatureInstance("graphql2")) {
 endpoint = "/graphql2"
}