Guest User

Untitled

a guest
Jan 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. {
  2. stations {
  3. name
  4. code
  5. }
  6. }
  7.  
  8. {
  9. "data": {
  10. "stations": [
  11. {
  12. "name": "Station1",
  13. "code": "ST1"
  14. },
  15. {
  16. "name": "Station2",
  17. "code": "ST2"
  18. },
  19. ]
  20. }
  21.  
  22. {
  23. stations(code: "ST1") {
  24. name
  25. code
  26. }
  27. }
  28.  
  29. {
  30. "errors": [
  31. {
  32. "message": "Unknown argument "code" on field "stations" of type "RootQuery".",
  33. "locations": [
  34. {
  35. "line": 2,
  36. "column": 11
  37. }
  38. ]
  39. }
  40. ]
  41. }
Add Comment
Please, Sign In to add comment