FormResponseQueries
No description
type FormResponseQueries {
listFormResponses(
formId: Long!
limit: Int
offset: Int
): FormResponsePage
}
Fields
FormResponseQueries.listFormResponses ● FormResponsePage object
One page of a form's public responses across ALL of its share links, newest first, plus the total so a table can page through them. data is the SurveyJS answer JSON exactly as submitted — untrusted end-user input, to be rendered as text and never as HTML. schemaVersion names the frozen definition the answers were given against, which is what makes a response from an older version of the form still readable. Requires canManageForms.
FormResponseQueries.listFormResponses.formId ● Long! non-null scalar
FormResponseQueries.listFormResponses.limit ● Int scalar
Max responses, 1-100 (default 20)
FormResponseQueries.listFormResponses.offset ● Int scalar
Row offset for pagination (default 0)
Returned By
formResponses query