Guest User

Untitled

a guest
Oct 18th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class User(ObjectType):
  2. name = String()
  3. password = String()
  4. first_name = String()
  5. def resolve_first_name(self, info):
  6. return name.split(' ')[0]
Add Comment
Please, Sign In to add comment