If you need more granular data (per interview question/step), you can query each step and its answers.
query InterviewUAByStep($id: String!) { interview(id: $id) { id steps(input: {}) { __typename ... on InterviewStepTextQuestionWithVideoAnswer { id index title answers(input: { onlyMostRecent: false }) { __typename ... on InterviewStepTextQuestionWithVideoAnswerAnswer { userAgent ip } } } ... on InterviewStepVideoQuestionWithVideoAnswer { id index title answers(input: { onlyMostRecent: false }) { __typename ... on InterviewStepVideoQuestionWithVideoAnswerAnswer { userAgent ip } } } } }}