export const publicTypeDefs = `#graphql type Query { health: String! } ` export const publicResolvers = { Query: { health: () => 'ok' } }