Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. query GetJobPosts(
  2. $query: String
  3. $industry: [Industry!]
  4. $min_salary: Int
  5. $currency: Currency
  6. $frequency: SalaryFrequency
  7. $state: String
  8. $country: String
  9. $city: String
  10. $limit: Int
  11. $skip: Int
  12. ) {
  13. jobPosts(
  14. query: $query
  15. industry: $industry
  16. min_salary: $min_salary
  17. currency: $currency
  18. frequency: $frequency
  19. state: $state
  20. country: $country
  21. city: $city
  22. limit: $limit
  23. skip: $skip
  24. ) {
  25. ...JobPostData
  26. __typename
  27. }
  28. }
  29.  
  30. fragment JobPostData on JobPost {
  31. _id
  32. organization_id
  33. organization {
  34. _id
  35. title
  36. picture_small
  37. picture_large
  38. can_user_access_assets
  39. __typename
  40. }
  41. industry
  42. title
  43. description
  44. status
  45. responsibilities
  46. requirements
  47. benefits
  48. salary {
  49. range_start
  50. range_end
  51. negotiable
  52. currency
  53. frequency
  54. __typename
  55. }
  56. job_location {
  57. address
  58. city
  59. state
  60. country
  61. zip_code
  62. __typename
  63. }
  64. gender_preference
  65. created_at
  66. last_date
  67. assessments {
  68. ...AssessmentData
  69. __typename
  70. }
  71. __typename
  72. }
  73.  
  74. fragment AssessmentData on Assessment {
  75. _id
  76. organization_id
  77. pass_marks
  78. time_limit
  79. title
  80. privacy
  81. description
  82. questions {
  83. title
  84. hint
  85. input_type
  86. max
  87. options
  88. __typename
  89. }
  90. __typename
  91. }
  92.  
  93.  
  94.  
  95. ## variables
  96.  
  97. {"currency": "SGD", "state": "Singapore", "min_salary": 1000}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement