graphql-endpoint
A lightweight framework for GraphQL endpoints.
Before (client):
fetch('somewhere/graphql', {
method: 'POST',
headers: {
'content-type': 'application/json',
},
body: JSON.stringify({ bigGraphQLQueryString, variables })
).then(response => response.json())
After (client):
fetch('somewhere/wrapped/endpoint?variable1=abc&variable2=def')
.then(response => response.json())
fetch('somehwere/wrapped/endpoint', {
method: 'POST',
headers: {
'content-type': 'application/json',
},
body: JSON.stringify({ variables })
).then(response => response.json())
Why?
- Reduce your client side request size by moving your GraphQL query from client side to server side.
- Keep your GraphQL queries at server side safely.
- Update your GraphQL queries at server side without publishing new client applications.
Usage
Add graphql-endpoint
to your GraphQL server.
const { ApolloServer } = require('apollo-server-express')
const express = require('express')
const { GraphQLEndpoint } = require('graphql-endpoint')
const bodyParser = require('body-parser')
const app = express()
app.use(bodyParser.json())
GraphQLEndpoint(app)
const server = new ApolloServer(configs)
server.applyMiddleware({
app,
bodyParser: false
})
Then put your GraphQL query files into src/endpoints/
. For example, the src/endpoints/my_api
with content { example(id: 123) { title, description } }
will serve GraphQL result on /my_api
.
The wrapped API endpoint will support two types of http requests:
- simple http GET: the http GET queries will be collected into GraphQL variables then be sent to GraphQL server with server side predefined GraphQL query.
- http POST: the http POST body be merged with server side predefined query, then be sent to GraphQL server.