'use strict' import { ApolloFastifyContextFunction } from '@as-integrations/fastify' export interface MyContext { greeting: string } export const myContextFunction: ApolloFastifyContextFunction = async () => ({ greeting: 'Hello World!! ' + new Date().getTime() })