new standards response.
May 4th, 2026

Use the below object inside the opportunity application query to fetch the new standards response; if this is null, use the older one; no change is required.

standards_response
{
survey {
survey_type
answers_report {
question {
id
question_text
standard {
name
}
}
answer_options {
effect
sub_questions_report {
question {
question_text
answer_options {
effect
}
}
  • use effect for positive and negative, it will return 3 values: positive, negative, or null.
  • sub_questions_report->answer_options->effect is present have more priority, so use this if present otherwise use answer_options->effect.




to fetch and show the standards list:

query Contants {
constants(type_id: "standard") {
id
name
parent_id
}
}
  • Ignore/filter out the standards that have parent_id as 0 on FE.
Crafted by