Advertisement
Guest User

luonnit

a guest
Nov 28th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. # Uusi käyttäjä
  2. # mutation luoKayttaja {
  3. # createUser(
  4. # data: {
  5. # displayName: "irmeli55"
  6. # email: "irmeli@gmail.com"
  7. # password: "paskapökäle"
  8. # }
  9. # ) {
  10. # # haetaan käyttäjän datat lisäyksen jälkeen tarkasteltavaksi #
  11. # id
  12. # displayName
  13. # email
  14. # password
  15. # }
  16. # }
  17.  
  18. # uusi tuote
  19.  
  20. #mutation luoTuote {
  21. # createProduct(
  22. # data: {
  23. # name: "Procaster TV"
  24. # description: "Turkkilaista laatua"
  25. # image:"procaster.jpg"
  26. # imageLarge:"procaster-l.jpg"
  27. # price: 10500
  28. # }
  29. # ) {
  30. # id
  31. # name
  32. # description
  33. # image
  34. # imageLarge
  35. # price
  36. # }
  37. #}
  38.  
  39. #mutation luoHuutis {
  40. # createEvent(
  41. # data: {
  42. # type: SLOW
  43. # description: "Isoa tavaraa kaupan!"
  44. # product: { connect: { id: "cjp10ll6zn0vq0a03gkkdgot0" } }
  45. # startTime: "2018-11-28"
  46. # }
  47. # ) {
  48. # id
  49. # product {
  50. # name
  51. # }
  52. # winner {
  53. # displayName
  54. # }
  55. # createdAt
  56. # }
  57. #}
  58.  
  59. #mutation luoHuutoja {
  60. # createUserInfo(
  61. # data: {
  62. # bidTokens: 10
  63. # purchaseTokens: 1
  64. # user: { connect: { id: "cjp10gxxpn0ff0a03m92g62b3" } }
  65. # }
  66. # ) {
  67. # id
  68. # bidTokens
  69. # purchaseTokens
  70. # }
  71. #}
  72.  
  73. #mutation luoHuutoTapahtuma {
  74. # createBid(
  75. # data: {
  76. # event: { connect: { id: "cjp10v98on4hq0a03wbu1bpt8" } }
  77. # user: { connect: { id: "cjp10gxxpn0ff0a03m92g62b3" } }
  78. # }
  79. # ) {
  80. # id
  81. # user {
  82. # displayName
  83. # }
  84. # event {
  85. # product {
  86. # name
  87. # }
  88. # }
  89. # createdAt
  90. # }
  91. #}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement