altair-fastify-plugin
Version:
Fastify Plugin of Altair GraphQL Client
52 lines (43 loc) • 868 B
JavaScript
const Fastify = require('fastify');
const mercurius = require('mercurius');
// const AltairFastify = require("altair-fastify-plugin");
const AltairFastify = require('../dist');
const app = Fastify();
const schema = `
type Query {
add(x: Int, y: Int): Int
}
`;
const resolvers = {
Query: {
add: async (_, { x, y }) => x + y,
},
};
app.register(mercurius, {
schema,
resolvers,
graphiql: false,
ide: false,
path: '/graphql',
});
app.register(AltairFastify, {
/**
* All these are the defaults.
*/
path: '/altair',
baseURL: '/altair/',
endpointURL: '/graphql',
/**
* Check all the options Altair has
*/
initialQuery: `
query {
add(x: 1, y: 2)
}
`,
});
app.get('/', async function (req, reply) {
const query = '{ add(x: 2, y: 2) }';
return reply.graphql(query);
});
app.listen({ port: 3000 });