| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- module.exports = {
- users: [],
- profiles: [],
- tags: [
- {
- tag_id: 1,
- tag_category: 'verification',
- tag_description: 'verified',
- is_active: true,
- },
- {
- tag_id: 2,
- tag_category: 'reveal',
- tag_description: 'verified',
- is_active: true,
- },
- ],
- tag_associations: [
- {
- tag_association_id: 1,
- profile_id: 1,
- membership_id: null,
- tag_id: 1,
- is_deleted: false,
- },
- {
- tag_association_id: 2,
- profile_id: 2,
- membership_id: null,
- tag_id: 1,
- is_deleted: false,
- },
- {
- tag_association_id: 3,
- profile_id: 3,
- membership_id: null,
- tag_id: 1,
- is_deleted: false,
- },
- {
- tag_association_id: 4,
- profile_id: 5,
- membership_id: null,
- tag_id: 1,
- is_deleted: false,
- },
- ],
- response_keys: [
- {
- response_key_id: 1,
- response_key_category: 'grit',
- response_key_prompt: 'what is your name',
- response_key_description: null,
- },
- {
- response_key_id: 2,
- response_key_category: 'openness',
- response_key_prompt: 'what is your favorite color',
- response_key_description: null,
- },
- {
- response_key_id: 3,
- response_key_category: 'bravery',
- response_key_prompt: 'what is your quest',
- response_key_description: null,
- },
- {
- response_key_id: 4,
- response_key_category: 'empathy',
- response_key_prompt:
- 'what is the average flight speed of an unladen swallow',
- response_key_description: null,
- },
- {
- response_key_id: 5,
- response_key_category: 'honesty',
- response_key_prompt: 'what is your favorite color',
- response_key_description: null,
- },
- {
- response_key_id: 6,
- response_key_category: 'respect',
- response_key_prompt: 'what kind of schedule are you looking for',
- response_key_description: null,
- },
- {
- response_key_id: 7,
- response_key_category: 'locationPref',
- response_key_prompt: 'what is your zip code',
- response_key_description: null,
- },
- {
- response_key_id: 8,
- response_key_category: 'profile',
- response_key_prompt: 'image',
- response_key_description: null,
- },
- {
- response_key_id: 9,
- response_key_category: 'profile',
- response_key_prompt: 'language',
- response_key_description: null,
- },
- {
- response_key_id: 10,
- response_key_category: 'profile',
- response_key_prompt: 'distance',
- response_key_description: null,
- },
- {
- response_key_id: 11,
- response_key_category: 'profile',
- response_key_prompt: 'duration',
- response_key_description: null,
- },
- {
- response_key_id: 12,
- response_key_category: 'profile',
- response_key_prompt: 'blurb',
- response_key_description: null,
- },
- ],
- responses: [],
- memberships: [],
- groupings: [],
- messages: [],
- match_queues: [
- {
- match_queue_id: 1,
- profile_id: 45,
- target_id: 1,
- is_deleted: false,
- },
- {
- match_queue_id: 2,
- profile_id: 45,
- target_id: 2,
- is_deleted: false,
- },
- {
- match_queue_id: 3,
- profile_id: 45,
- target_id: 3,
- is_deleted: false,
- }
- ],
- }
|