Join Slack
Powered by
const ProductType: GraphQLObjectType = new GraphQL...
# orm-help
x
xiaoqf10
09/25/2018, 4:38 AM
const ProductType: GraphQLObjectType = new GraphQLObjectType({ name: 'Product', fields: () => ({ name: { type: new GraphQLNonNull(GraphQLString), resolve: async ({ name }) => { return `${name}.....`; }, }, }), });
Open in Slack
Previous
Next