You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mock.js 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812
  1. module.exports = {
  2. users: [],
  3. profiles: [],
  4. tags: [
  5. {
  6. tag_id: 1,
  7. tag_category: 'verification',
  8. tag_description: 'verified',
  9. is_active: true,
  10. },
  11. {
  12. tag_id: 2,
  13. tag_category: 'reveal',
  14. tag_description: 'verified',
  15. is_active: true,
  16. },
  17. {
  18. tag_id: 3,
  19. tag_category: 'reveal',
  20. tag_description: 'pronoun',
  21. is_active: true,
  22. },
  23. {
  24. tag_id: 4,
  25. tag_category: 'reveal',
  26. tag_description: 'image',
  27. is_active: true,
  28. },
  29. {
  30. tag_id: 5,
  31. tag_category: 'reveal',
  32. tag_description: 'blurb',
  33. is_active: true,
  34. },
  35. {
  36. tag_id: 6,
  37. tag_category: 'reveal',
  38. tag_description: 'urgency',
  39. is_active: true,
  40. },
  41. {
  42. tag_id: 7,
  43. tag_category: 'reveal',
  44. tag_description: 'user_name',
  45. is_active: true,
  46. },
  47. {
  48. tag_id: 8,
  49. tag_category: 'reveal',
  50. tag_description: 'user_email',
  51. is_active: true,
  52. },
  53. {
  54. tag_id: 9,
  55. tag_category: 'healthcare--certification',
  56. tag_description: 'ADM-BC',
  57. is_active: true,
  58. },
  59. {
  60. tag_id: 10,
  61. tag_category: 'healthcare--certification',
  62. tag_description: 'CBHC',
  63. is_active: true,
  64. },
  65. {
  66. tag_id: 11,
  67. tag_category: 'healthcare--certification',
  68. tag_description: 'CEN',
  69. is_active: true,
  70. },
  71. {
  72. tag_id: 12,
  73. tag_category: 'healthcare--certification',
  74. tag_description: 'CFRN',
  75. is_active: true,
  76. },
  77. {
  78. tag_id: 13,
  79. tag_category: 'healthcare--certification',
  80. tag_description: 'CMCN',
  81. is_active: true,
  82. },
  83. ],
  84. tag_associations: [
  85. {
  86. tag_association_id: 1,
  87. profile_id: 1,
  88. grouping_id: null,
  89. tag_id: 1,
  90. is_deleted: false,
  91. },
  92. {
  93. tag_association_id: 2,
  94. profile_id: 2,
  95. grouping_id: null,
  96. tag_id: 1,
  97. is_deleted: false,
  98. },
  99. {
  100. tag_association_id: 3,
  101. profile_id: 3,
  102. grouping_id: null,
  103. tag_id: 1,
  104. is_deleted: false,
  105. },
  106. {
  107. tag_association_id: 4,
  108. profile_id: 45,
  109. grouping_id: null,
  110. tag_id: 1,
  111. is_deleted: false,
  112. },
  113. {
  114. tag_association_id: 5,
  115. profile_id: 45,
  116. grouping_id: 2,
  117. tag_id: 8,
  118. is_deleted: false,
  119. },
  120. {
  121. tag_association_id: 6,
  122. profile_id: 45,
  123. grouping_id: 2,
  124. tag_id: 5,
  125. is_deleted: false,
  126. },
  127. {
  128. tag_association_id: 7,
  129. profile_id: 2,
  130. grouping_id: 2,
  131. tag_id: 5,
  132. is_deleted: false,
  133. },
  134. {
  135. tag_association_id: 8,
  136. profile_id: 41,
  137. grouping_id: 1,
  138. tag_id: 4,
  139. is_deleted: false,
  140. },
  141. {
  142. tag_association_id: 9,
  143. profile_id: 41,
  144. grouping_id: 1,
  145. tag_id: 5,
  146. is_deleted: false,
  147. },
  148. {
  149. tag_association_id: 10,
  150. profile_id: 4,
  151. grouping_id: null,
  152. tag_id: 1,
  153. is_deleted: false,
  154. },
  155. {
  156. tag_association_id: 11,
  157. profile_id: 5,
  158. grouping_id: null,
  159. tag_id: 1,
  160. is_deleted: false,
  161. },
  162. {
  163. tag_association_id: 12,
  164. profile_id: 6,
  165. grouping_id: null,
  166. tag_id: 3,
  167. is_deleted: false,
  168. },
  169. {
  170. tag_association_id: 13,
  171. profile_id: 7,
  172. grouping_id: null,
  173. tag_id: 8,
  174. is_deleted: false,
  175. },
  176. {
  177. tag_association_id: 14,
  178. profile_id: 8,
  179. grouping_id: null,
  180. tag_id: 7,
  181. is_deleted: false,
  182. },
  183. {
  184. tag_association_id: 15,
  185. profile_id: 9,
  186. grouping_id: 1,
  187. tag_id: 2,
  188. is_deleted: false,
  189. },
  190. {
  191. tag_association_id: 16,
  192. profile_id: 10,
  193. grouping_id: 2,
  194. tag_id: 2,
  195. is_deleted: false,
  196. },
  197. {
  198. tag_association_id: 17,
  199. profile_id: 11,
  200. grouping_id: 2,
  201. tag_id: 3,
  202. is_deleted: false,
  203. },
  204. {
  205. tag_association_id: 18,
  206. profile_id: 12,
  207. grouping_id: 3,
  208. tag_id: 4,
  209. is_deleted: false,
  210. },
  211. {
  212. tag_association_id: 19,
  213. profile_id: 13,
  214. grouping_id: 3,
  215. tag_id: 7,
  216. is_deleted: false,
  217. },
  218. {
  219. tag_association_id: 20,
  220. profile_id: 14,
  221. grouping_id: 4,
  222. tag_id: 6,
  223. is_deleted: false,
  224. },
  225. {
  226. tag_association_id: 21,
  227. profile_id: 15,
  228. grouping_id: 1,
  229. tag_id: 1,
  230. is_deleted: false,
  231. },
  232. {
  233. tag_association_id: 22,
  234. profile_id: 16,
  235. grouping_id: 1,
  236. tag_id: 2,
  237. is_deleted: false,
  238. },
  239. {
  240. tag_association_id: 23,
  241. profile_id: 17,
  242. grouping_id: null,
  243. tag_id: 6,
  244. is_deleted: false,
  245. },
  246. {
  247. tag_association_id: 24,
  248. profile_id: 18,
  249. grouping_id: null,
  250. tag_id: 8,
  251. is_deleted: false,
  252. },
  253. {
  254. tag_association_id: 25,
  255. profile_id: 19,
  256. grouping_id: null,
  257. tag_id: 3,
  258. is_deleted: false,
  259. },
  260. {
  261. tag_association_id: 26,
  262. profile_id: 20,
  263. grouping_id: null,
  264. tag_id: 3,
  265. is_deleted: false,
  266. },
  267. {
  268. tag_association_id: 27,
  269. profile_id: 21,
  270. grouping_id: 2,
  271. tag_id: 1,
  272. is_deleted: false,
  273. },
  274. {
  275. tag_association_id: 28,
  276. profile_id: 22,
  277. grouping_id: 2,
  278. tag_id: 1,
  279. is_deleted: false,
  280. },
  281. {
  282. tag_association_id: 29,
  283. profile_id: 23,
  284. grouping_id: 3,
  285. tag_id: 2,
  286. is_deleted: false,
  287. },
  288. {
  289. tag_association_id: 30,
  290. profile_id: 24,
  291. grouping_id: 4,
  292. tag_id: 4,
  293. is_deleted: false,
  294. },
  295. {
  296. tag_association_id: 31,
  297. profile_id: 25,
  298. grouping_id: 5,
  299. tag_id: 3,
  300. is_deleted: false,
  301. },
  302. {
  303. tag_association_id: 32,
  304. profile_id: 26,
  305. grouping_id: 1,
  306. tag_id: 4,
  307. is_deleted: false,
  308. },
  309. {
  310. tag_association_id: 33,
  311. profile_id: 27,
  312. grouping_id: null,
  313. tag_id: 3,
  314. is_deleted: false,
  315. },
  316. {
  317. tag_association_id: 34,
  318. profile_id: 28,
  319. grouping_id: null,
  320. tag_id: 3,
  321. is_deleted: false,
  322. },
  323. {
  324. tag_association_id: 35,
  325. profile_id: 29,
  326. grouping_id: null,
  327. tag_id: 7,
  328. is_deleted: false,
  329. },
  330. {
  331. tag_association_id: 36,
  332. profile_id: 30,
  333. grouping_id: null,
  334. tag_id: 6,
  335. is_deleted: false,
  336. },
  337. {
  338. tag_association_id: 37,
  339. profile_id: 31,
  340. grouping_id: 3,
  341. tag_id: 4,
  342. is_deleted: false,
  343. },
  344. {
  345. tag_association_id: 38,
  346. profile_id: 32,
  347. grouping_id: 3,
  348. tag_id: 5,
  349. is_deleted: false,
  350. },
  351. {
  352. tag_association_id: 39,
  353. profile_id: 33,
  354. grouping_id: 3,
  355. tag_id: 5,
  356. is_deleted: false,
  357. },
  358. {
  359. tag_association_id: 40,
  360. profile_id: 34,
  361. grouping_id: 4,
  362. tag_id: 7,
  363. is_deleted: false,
  364. },
  365. {
  366. tag_association_id: 41,
  367. profile_id: 35,
  368. grouping_id: 4,
  369. tag_id: 8,
  370. is_deleted: false,
  371. },
  372. {
  373. tag_association_id: 42,
  374. profile_id: 36,
  375. grouping_id: 1,
  376. tag_id: 1,
  377. is_deleted: false,
  378. },
  379. {
  380. tag_association_id: 43,
  381. profile_id: 37,
  382. grouping_id: 1,
  383. tag_id: 2,
  384. is_deleted: false,
  385. },
  386. {
  387. tag_association_id: 44,
  388. profile_id: 38,
  389. grouping_id: null,
  390. tag_id: 2,
  391. is_deleted: false,
  392. },
  393. {
  394. tag_association_id: 45,
  395. profile_id: 39,
  396. grouping_id: null,
  397. tag_id: 6,
  398. is_deleted: false,
  399. },
  400. {
  401. tag_association_id: 46,
  402. profile_id: 40,
  403. grouping_id: null,
  404. tag_id: 5,
  405. is_deleted: false,
  406. },
  407. {
  408. tag_association_id: 47,
  409. profile_id: 41,
  410. grouping_id: null,
  411. tag_id: 6,
  412. is_deleted: false,
  413. },
  414. {
  415. tag_association_id: 48,
  416. profile_id: 42,
  417. grouping_id: 1,
  418. tag_id: 8,
  419. is_deleted: false,
  420. },
  421. {
  422. tag_association_id: 49,
  423. profile_id: 43,
  424. grouping_id: 1,
  425. tag_id: 7,
  426. is_deleted: false,
  427. },
  428. // NOTE: profile_id 147 is chosen based off of GENERATED data,
  429. // after running 'npm run generate', replace 147 in mock to next profile_id to be genearted
  430. // i.e. last profile_id number + 1
  431. // TODO: remove from mock data once bare bones matching logic can show poorly matched matches...
  432. {
  433. tag_association_id: 50,
  434. profile_id: 136,
  435. grouping_id: 2,
  436. tag_id: 7,
  437. is_deleted: false,
  438. },
  439. ],
  440. response_keys: [
  441. {
  442. response_key_id: 1,
  443. response_key_category: 'visionary_vs_implementer',
  444. response_key_prompt:
  445. 'Do you prefer to work with those who are driven by their Visionary insights, or those who are driven more by their Implementation?',
  446. response_key_description: 'first round draft scoring question',
  447. aspect: 'visionary_vs_implementer',
  448. category: 'aspect',
  449. placeholder: null,
  450. invalidInputPrompt: null,
  451. },
  452. {
  453. response_key_id: 2,
  454. response_key_category: 'creative_vs_methodical',
  455. response_key_prompt:
  456. 'Have you found more success working with employees that are more Creative or those that are more Methodical?',
  457. response_key_description: 'first round draft scoring question',
  458. aspect: 'creative_vs_methodical',
  459. category: 'aspect',
  460. placeholder: null,
  461. invalidInputPrompt: null,
  462. },
  463. {
  464. response_key_id: 3,
  465. response_key_category: 'dynamic_vs_ordered',
  466. response_key_prompt:
  467. 'Which do you find to be the ideal working environment, one that is more Collaborative or one that is more Independent?',
  468. response_key_description: 'first round draft scoring question',
  469. aspect: 'dynamic_vs_ordered',
  470. category: 'aspect',
  471. placeholder: null,
  472. invalidInputPrompt: null,
  473. },
  474. {
  475. response_key_id: 4,
  476. response_key_category: 'precise_vs_resourceful',
  477. response_key_prompt:
  478. 'Is the success of your team more likely if it includes individuals who are more Innovative, or those that are more Conventional when fulfilling their job duties?',
  479. response_key_description: 'first round draft scoring question',
  480. aspect: 'precise_vs_resourceful',
  481. category: 'aspect',
  482. placeholder: null,
  483. invalidInputPrompt: null,
  484. },
  485. {
  486. response_key_id: 5,
  487. response_key_category: 'big_Picture_vs_focused',
  488. response_key_prompt:
  489. 'When fulfilling the role of the hiring leader, do you find yourself focusing more on the Big Picture or The Task At Hand?',
  490. response_key_description: 'first round draft scoring question',
  491. aspect: 'big_Picture_vs_focused',
  492. category: 'aspect',
  493. placeholder: null,
  494. invalidInputPrompt: null,
  495. },
  496. {
  497. response_key_id: 6,
  498. response_key_category: 'guided_vs_self-managed',
  499. response_key_prompt:
  500. 'Do you prefer to Guide your employees towards achieving the team goals, or do you prefer your employees to be Self-Managed?',
  501. response_key_description: 'first round draft scoring question',
  502. aspect: 'guided_vs_self-managed',
  503. category: 'aspect',
  504. placeholder: null,
  505. invalidInputPrompt: null,
  506. },
  507. {
  508. response_key_id: 7,
  509. response_key_category: 'profile',
  510. response_key_prompt:
  511. 'First things first, could you provide us with your name? [break] I am called [break] when others address me.',
  512. response_key_description: 'required for profile creation',
  513. aspect: null,
  514. category: 'input',
  515. placeholder: 'Joe Doe',
  516. invalidInputPrompt: 'So sorry, but what is your name?',
  517. },
  518. {
  519. response_key_id: 8,
  520. response_key_category: 'profile',
  521. response_key_prompt:
  522. 'In order for others to reach out to you on Siimee, we will need you to provide your email address.[break]When reaching out to me, [break] is my preferred email.',
  523. response_key_description: 'required for profile creation',
  524. aspect: null,
  525. category: 'input',
  526. placeholder: 'joe@mailme.com',
  527. invalidInputPrompt:
  528. 'It looks like that email is not valid, try en email that is formatted like so: joe@joe.com',
  529. },
  530. {
  531. response_key_id: 9,
  532. response_key_category: 'profile',
  533. response_key_prompt:
  534. 'So far so good! Next we will need you to establish a super secret password. Your password should be at least 14 characters long and have at least 2 special characters.[break]My [break] is a very secure passcode that only I will have access to!',
  535. response_key_description: 'required for profile creation',
  536. aspect: null,
  537. category: 'input',
  538. placeholder: 'supersecr3tp@ssword',
  539. invalidInputPrompt:
  540. 'That password does not fit our requirements, please follow the above instructions to generate a secure password.',
  541. },
  542. {
  543. response_key_id: 10,
  544. response_key_category: 'profile',
  545. response_key_prompt:
  546. 'Looking good! Doing great. The next piece of info needed is your zip code. That way we can be sure to only show you other people in your area.[break]My zip code, [break] is the general area where I wish to see results in.',
  547. response_key_description: 'required for distance calculations',
  548. aspect: null,
  549. category: 'input',
  550. placeholder: '90012',
  551. invalidInputPrompt:
  552. 'Oops! That is not a recognized zipcode, please enter a 5 digit zipcode like: 97869',
  553. },
  554. {
  555. response_key_id: 11,
  556. response_key_category: 'profile',
  557. response_key_prompt:
  558. 'What are you seeking? Are you looking to find a position to be employed in, or are you looking to employ a candidate?[break] I am a [break] seeking an employer/employee.',
  559. response_key_description: 'required for profile generation',
  560. aspect: null,
  561. category: 'choice',
  562. placeholder: null,
  563. invalidInputPrompt:
  564. 'In order to provide you with the best results, Siimee will need to know whether you are an employer looking to fill a position, or a candidate looking for an employment. Please take a look at our above options and choose one.',
  565. },
  566. {
  567. response_key_id: 12,
  568. response_key_category: 'profile',
  569. response_key_prompt:
  570. 'Hey, you are almost done! Please provide an image of yourself so others can recognize you if you ever meet up IRL:',
  571. response_key_description: 'required for profile pictures',
  572. aspect: null,
  573. category: 'input',
  574. placeholder: null,
  575. invalidInputPrompt:
  576. 'It appears you have yet to upload an image. Please provide Siimee with an image in case you want to show others what you look like.',
  577. },
  578. {
  579. response_key_id: 13,
  580. response_key_category: 'profile',
  581. response_key_prompt:
  582. 'What language is your native language?[break] I consider [break] language as my native language.',
  583. response_key_description:
  584. 'programming and spoken language preference',
  585. aspect: null,
  586. category: 'choice',
  587. placeholder: null,
  588. invalidInputPrompt:
  589. 'We try our best to provide results in the language of your choosing. ¿Prefieres ver resultados en español? Ou peut-être parlez-vous français? Or would you prefer to see results in english?',
  590. },
  591. {
  592. response_key_id: 14,
  593. response_key_category: 'profile',
  594. response_key_prompt:
  595. 'What kind of duration would you prefer? Are you looking for part-time, full-time, other?[break] Currently, I am looking for a [break] job at this time.',
  596. response_key_description:
  597. 'duration preference for hours able to dedicate to work',
  598. aspect: null,
  599. category: 'choice',
  600. placeholder: null,
  601. invalidInputPrompt:
  602. 'Looks like you have yet to fill out what kind of work you are most interested in. As in, part-time, full-time. Take a look at our above options and choose whatever feels right for you right now. You can always edit them later!',
  603. },
  604. {
  605. response_key_id: 15,
  606. response_key_category: 'profile',
  607. response_key_prompt:
  608. 'Would you prefer remote, hybrid, in-person work?[break] Personally I would prefer a [break] job right now. It is just what works best for me.',
  609. response_key_description:
  610. 'location preference for where work happens',
  611. aspect: null,
  612. category: 'choice',
  613. placeholder: null,
  614. invalidInputPrompt:
  615. 'Hold up! So sorry to put a pause here, but it looks like you have not chosen whether to work remotely or in person. No worries, if you are unsure, just choose the flexible option.',
  616. },
  617. {
  618. response_key_id: 16,
  619. response_key_category: 'profile',
  620. response_key_prompt:
  621. 'Please provide us with a short blurb about yourself. What is your backstory?[break] My origin story starts like this:[break]',
  622. response_key_description: 'required for profile description',
  623. aspect: null,
  624. category: 'input',
  625. placeholder: 'my backstory starts long long ago...',
  626. invalidInputPrompt:
  627. 'Whoa! Cool story. Unfortunately your backstory is either too long or too short. Please tell us a bit about yourself between 1 and 100 characters.',
  628. },
  629. {
  630. response_key_id: 17,
  631. response_key_category: 'profile',
  632. response_key_prompt:
  633. 'How soon do you need the position filled or you need to be employed? [break]I am currently [break] when it comes to employment opportunities right now.',
  634. response_key_description: 'urgency for when work is required',
  635. aspect: null,
  636. category: 'choice',
  637. placeholder: null,
  638. invalidInputPrompt:
  639. 'Looks like you left this field blank. Take a look at our provided options and tell us when you would like be employed.',
  640. },
  641. {
  642. response_key_id: 18,
  643. response_key_category: 'profile',
  644. response_key_prompt:
  645. 'When others refer to you, what pronouns do you prefer they use?[break]I prefer to be called [break] when others refer to me.',
  646. response_key_description: 'required for profile pronouns',
  647. aspect: null,
  648. category: 'choice',
  649. placeholder: null,
  650. invalidInputPrompt:
  651. 'Ensuring that others on our platform are aware of what your preferred pronouns are is important to us. Please choose from one of the above options.',
  652. },
  653. {
  654. response_key_id: 19,
  655. response_key_category: 'profile',
  656. response_key_prompt:
  657. 'What distance from your home are you looking to work in?[break] Preferably, I would like to work [break] from my place of residence.',
  658. response_key_description:
  659. 'preference for commuting distance cutoff',
  660. aspect: null,
  661. category: 'input',
  662. placeholder: '5 mi',
  663. invalidInputPrompt:
  664. 'Whoa! You either left this field blank or tried to input an astronomically large distance you would like to see results from. Please input a distance you would like to see results in.',
  665. },
  666. ],
  667. responses: [],
  668. memberships: [
  669. {
  670. membership_id: 1,
  671. profile_id: 41,
  672. grouping_id: 1,
  673. membership_type: 'participant',
  674. can_edit: false,
  675. is_active: true,
  676. },
  677. {
  678. membership_id: 2,
  679. profile_id: 46,
  680. grouping_id: 1,
  681. membership_type: 'participant',
  682. can_edit: false,
  683. is_active: true,
  684. },
  685. // NOTE: profile_id 147 is chosen based off of GENERATED data,
  686. // after running 'npm run generate', replace 147 in mock to next profile_id to be genearted
  687. // i.e. last profile_id number + 1
  688. // TODO: remove from mock data once bare bones matching logic can show poorly matched matches...
  689. {
  690. membership_id: 3,
  691. profile_id: 147,
  692. grouping_id: 2,
  693. membership_type: 'participant',
  694. can_edit: false,
  695. is_active: true,
  696. },
  697. {
  698. membership_id: 4,
  699. profile_id: 46,
  700. grouping_id: 2,
  701. membership_type: 'participant',
  702. can_edit: false,
  703. is_active: true,
  704. },
  705. ],
  706. groupings: [
  707. {
  708. grouping_id: 1,
  709. grouping_name: '1663285820.067_41_46',
  710. grouping_type: 'match',
  711. },
  712. {
  713. grouping_id: 2,
  714. grouping_name: '1663285820.067_147_46',
  715. grouping_type: 'match',
  716. },
  717. ],
  718. messages: [],
  719. match_queues: [
  720. { match_queue_id: 1, profile_id: 47, target_id: 62, is_deleted: false },
  721. { match_queue_id: 2, profile_id: 62, target_id: 47, is_deleted: false },
  722. { match_queue_id: 3, profile_id: 62, target_id: 46, is_deleted: false },
  723. { match_queue_id: 4, profile_id: 46, target_id: 62, is_deleted: false },
  724. { match_queue_id: 5, profile_id: 47, target_id: 46, is_deleted: false },
  725. { match_queue_id: 6, profile_id: 46, target_id: 48, is_deleted: false },
  726. { match_queue_id: 7, profile_id: 46, target_id: 44, is_deleted: false },
  727. { match_queue_id: 8, profile_id: 46, target_id: 43, is_deleted: false },
  728. { match_queue_id: 9, profile_id: 46, target_id: 42, is_deleted: false },
  729. {
  730. match_queue_id: 10,
  731. profile_id: 46,
  732. target_id: 41,
  733. is_deleted: false,
  734. },
  735. {
  736. match_queue_id: 11,
  737. profile_id: 46,
  738. target_id: 40,
  739. is_deleted: false,
  740. },
  741. {
  742. match_queue_id: 12,
  743. profile_id: 40,
  744. target_id: 46,
  745. is_deleted: false,
  746. },
  747. {
  748. match_queue_id: 13,
  749. profile_id: 41,
  750. target_id: 46,
  751. is_deleted: false,
  752. },
  753. {
  754. match_queue_id: 14,
  755. profile_id: 42,
  756. target_id: 46,
  757. is_deleted: false,
  758. },
  759. {
  760. match_queue_id: 15,
  761. profile_id: 43,
  762. target_id: 46,
  763. is_deleted: false,
  764. },
  765. {
  766. match_queue_id: 16,
  767. profile_id: 44,
  768. target_id: 46,
  769. is_deleted: false,
  770. },
  771. // NOTE: profile_id 147 is chosen based off of GENERATED data,
  772. // after running 'npm run generate', replace 147 in mock to next profile_id to be generated
  773. // i.e. last profile_id number + 1
  774. // TODO: remove from mock data once bare bones matching logic can show poorly matched matches...
  775. {
  776. match_queue_id: 17,
  777. profile_id: 147,
  778. target_id: 46,
  779. is_deleted: false,
  780. },
  781. {
  782. match_queue_id: 18,
  783. profile_id: 147,
  784. target_id: 46,
  785. is_deleted: false,
  786. },
  787. {
  788. match_queue_id: 19,
  789. profile_id: 147,
  790. target_id: 44,
  791. is_deleted: false,
  792. },
  793. {
  794. match_queue_id: 20,
  795. profile_id: 147,
  796. target_id: 43,
  797. is_deleted: false,
  798. },
  799. {
  800. match_queue_id: 21,
  801. profile_id: 147,
  802. target_id: 42,
  803. is_deleted: false,
  804. },
  805. {
  806. match_queue_id: 22,
  807. profile_id: 147,
  808. target_id: 41,
  809. is_deleted: false,
  810. },
  811. ],
  812. }