-
Notifications
You must be signed in to change notification settings - Fork 50
server_faq
etienne-sf edited this page Mar 27, 2021
·
15 revisions
The server is a Spring Boot app or servlet. It is configured through one of the application.properties
or the application.yml
files. It should be available in the root of the classpath, so you should provide is in the project's src/main/resources folder.
The below sample is based on the allGraphQLCases-server, available as a sample in the Maven and Gradle projects:
# Changing the port for the GraphQL server
server:
port: 8180
# Changing the server path
graphql:
url: /my/updated/graphql/path
Creating a first app (non spring)
Connect to more than one GraphQL servers
Easily execute GraphQL requests with GraphQL Repositories
Access to an OAuth2 GraphQL server
How to personalize the client app
Howto personalize the generated code
Client migration from 1.x to 2.x
Implement an OAuth2 GraphQL server
Howto personalize the generated code
Server migration from 1.x to 2.x