Has anyone setup Highlight.io with RW? A little stuck attempting to add the ApolloServerHighlightPlugin
plugin to the apollo server in RW. From the highlight docs:
const server = new ApolloServer({
typeDefs,
resolvers,
plugins: [ApolloServerHighlightPlugin(...)],
})
Does it belong in the extraPlugins
here?
export const handler = createGraphQLHandler({
extraPlugins: [],
authDecoder,
getCurrentUser,
loggerConfig: { logger, options: {} },
directives,
sdls,
services,
onException: () => {
// Disconnect from your database with an unhandled exception.
db.$disconnect()
},
})