import { GraphQLSchema, GraphQLString, GraphQLObjectType, } from 'graphql' import primus from 'primus' import primusGraphQL from 'primus-graphql' const UserType = new GraphQLObjectType({ name: 'User', description: 'user', fields: { id: { type: GraphQLString }, name: { type: GraphQLString } } }) const Query = new GraphQLObjectType({ name: 'Query', description: 'Root query', fields: { user: { type:

