Advertisement
Guest User

Untitled

a guest
May 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. fragment ResponseStatusFields on ResponseStatus {
  2. status
  3. error
  4. error_code
  5. notifications
  6. elapsed
  7. }
  8.  
  9.  
  10. mutation(
  11. $picture: String,
  12. $name: String,
  13. $access_token: String,
  14. $userid: String,
  15. $social_id: String,
  16. $social_provider: String,
  17. $provider: String,
  18. $email: String
  19. ) {
  20. register_user(
  21. picture: $picture,
  22. name: $name,
  23. access_token: $access_token,
  24. userid: $userid,
  25. social_id: $social_id,
  26. social_provider: $social_provider,
  27. provider: $provider,
  28. email: $email
  29. ) {
  30. response_status { ...ResponseStatusFields }
  31. user {
  32. id
  33. api_key
  34. }
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement