Advertisement
sak1b

Untitled

Feb 15th, 2021
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. mutation {
  2. createRule(input: {
  3. name: "range_rule for product test1",
  4. service: "digired",
  5. type: REGULAR,
  6. category: REALTIME,
  7. isActive: true,
  8. timeline: {
  9. useTimeline: true,
  10. startDate: "2021-01-01",
  11. endDate: "2021-06-01"
  12. },
  13. target: {
  14. targetByAll: false,
  15. targetByProfile: false,
  16. # profile: "test_profile",
  17. targetByGeography: true,
  18. geography: {
  19. districts: ["RGlzdHJpY3Q6NDM=","RGlzdHJpY3Q6MjY4="],
  20. thanas: ["VGhhbmE6NDQ=", "VGhhbmE6MjY5="]
  21. },
  22. targetByGroup: false,
  23. },
  24. calculation: {
  25. commissionType: PERCENTAGE,
  26. commissionCategory: PRODUCT,
  27. product: [
  28. {
  29. productSku: "digired-622",
  30. commission: 15,
  31. maxCap: 500
  32. },
  33. {
  34. productSku: "digired-623",
  35. commission: 20,
  36. maxCap: 1000
  37. },
  38. {
  39. productSku: "digired-624",
  40. commission: 25,
  41. maxCap: 1000
  42. }
  43. ]
  44. }
  45. }) {
  46. rule {
  47. id
  48. name
  49. }
  50. ruleErrors {
  51. code
  52. field
  53. message
  54. }
  55. }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement