Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. const UserType = new GraphQLObjectType({
  2. name: 'User',
  3. fields: () => ({
  4. userId: { type: GraphQLString },
  5. name: { type: GraphQLString },
  6. age: { type: GraphQLString },
  7. email: { type: GraphQLString },
  8. address: { type: GraphQLString },
  9. company: { type: GraphQLString }
  10. })
  11. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement