export const userTypeDefs = `#graphql type Query { health: String! } ` export const userResolvers = { Query: { health: () => 'ok', }, }