Skip to content

Instantly share code, notes, and snippets.

@fermmm
Last active October 9, 2020 22:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fermmm/c02ecb768840ce8ffc2705a61c0d50e4 to your computer and use it in GitHub Desktop.
Save fermmm/c02ecb768840ce8ffc2705a61c0d50e4 to your computer and use it in GitHub Desktop.
Preguntas
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