Last active
October 9, 2020 22:14
-
-
Save fermmm/c02ecb768840ce8ffc2705a61c0d50e4 to your computer and use it in GitHub Desktop.
Preguntas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const companyQuestion: QuestionData = { | |
questionId: 0, | |
affectsCardsGameOrdering: false, | |
text: '¿Pensás ir acompañadx a las citas grupales de esta app?', | |
shortVersion: 'Iría a la cita con', | |
answers: [ | |
{ | |
answerId: 0, | |
text: 'Iría solx', | |
}, | |
{ | |
answerId: 1, | |
text: 'Iría con mi pareja', | |
}, | |
], | |
}; | |
const feminismQuestion: QuestionData = { | |
questionId: 1, | |
affectsCardsGameOrdering: true, | |
text: '¿Estás de acuerdo con el feminismo en general?', | |
shortVersion: 'Está de acuerdo con el feminismo en general', | |
answers: [ | |
{ | |
answerId: 0, | |
text: 'Si, muy de acuerdo / En casi todo', | |
}, | |
{ | |
answerId: 1, | |
text: 'No tan de acuerdo / Nada de acuerdo', | |
}, | |
], | |
incompatibilitiesBetweenAnswers: { | |
0: [1], | |
1: [0], | |
}, | |
}; | |
const groupSexQuestion: QuestionData = { | |
questionId: 2, | |
affectsCardsGameOrdering: true, | |
text: '¿Qué pensás del sexo grupal?', | |
shortVersion: 'Su opinión sobre el sexo grupal', | |
answers: [ | |
{ | |
answerId: 0, | |
text: 'No lo se / Prefiero no opinar', | |
}, | |
{ | |
answerId: 1, | |
text: 'Me interesa', | |
}, | |
{ | |
answerId: 2, | |
text: 'No tengo mucho interés / No me interesa', | |
}, | |
], | |
incompatibilitiesBetweenAnswers: { | |
1: [0, 2], | |
2: [1], | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment