src/common/actions/queries/getRetrospectiveSurvey.js
Function `getRetrospectiveSurvey` has 49 lines of code (exceeds 25 allowed). Consider refactoring.export default function getRetrospectiveSurvey(projectName) { return { variables: {projectName}, query: ` query($projectName:String) { getRetrospectiveSurvey(projectName:$projectName) { id, project { id, name, chapter { id, name, }, cycle { id, cycleNumber, }, }, questions { id, body, responseType, responseInstructions, subjectType, subjects { id, name, handle, profileUrl, avatarUrl, }, response { values { subjectId, value, } }, validationOptions { min max sum length integer } }, }, } `, }}