Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. = МУТАЦИЯ
  2. mutation UpdateVisit($input: UpdateVisitInput!) {
  3. updateVisit(input: $input) {
  4. errors {
  5. phone
  6. name
  7. comment
  8. }
  9. result {
  10. id
  11. }
  12. }
  13. }
  14.  
  15. = INPUT где убрана одна запись (ошибка)
  16. {
  17. "input": {
  18. "id": "806",
  19. "phone": "+79032226611",
  20. "name": "111",
  21. "comment": "",
  22. "records": [
  23. {
  24. "id": "962",
  25. "status": "created",
  26. "comment": "",
  27. "mark": "thisEmployee",
  28. "start": "14:45",
  29. "services": [
  30. {
  31. "id": "982",
  32. "count": 1,
  33. "price": 5000,
  34. "duration": 130
  35. }
  36. ]
  37. }
  38. ]
  39. }
  40. }
  41.  
  42.  
  43. = INPUT Оригинальный, рабочий
  44. {
  45. "input": {
  46. "id": "806",
  47. "phone": "+79032226611",
  48. "name": "111",
  49. "comment": "",
  50. "records": [
  51. {
  52. "id": "960",
  53. "status": "created",
  54. "comment": "",
  55. "mark": "thisEmployee",
  56. "start": "10:15",
  57. "services": [
  58. {
  59. "id": "980",
  60. "count": 1,
  61. "price": 400,
  62. "duration": 0
  63. },
  64. {
  65. "id": "981",
  66. "count": 1,
  67. "price": 5000,
  68. "duration": 130
  69. }
  70. ]
  71. },
  72. {
  73. "id": "962",
  74. "status": "created",
  75. "comment": "",
  76. "mark": "thisEmployee",
  77. "start": "14:45",
  78. "services": [
  79. {
  80. "id": "982",
  81. "count": 1,
  82. "price": 5000,
  83. "duration": 130
  84. }
  85. ]
  86. }
  87. ]
  88. }
  89. }
  90.  
  91. = ТОКЕН
  92. { "Authorization": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MjQ0LCJpYXQiOjE1NjQ4NzUzODksImV4cCI6MTU2NTQ4MDE4OX0.KjPJevKWqACjwECm0xz6JVO2aPlZTHVTn6s2hUHrWcw"}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement