v0.10.4 - Entry Counts and Quiz Results
This minor release adds a form's total entries count
and its quizResults
to the GfFormToGfEntryConnection
connection.
E.g.:
query {
gfForm(id: $id, idType: $idType) {
entries {
count # the number of entries submitted
quizResults { # The quiz results summary
averagePercentage
passRate
gradeCounts { # the frequency of each grade
count
grade
}
fieldCounts { ## the individual field breakdown
correctCount
formField {
node {
label
}
}
choiceCounts { ## the frequency of each answer
count
text
}
}
}
}
}
}
- feat: Add
count
toGfFormToGfEntryConnection
. - feat: Add
quizResults
toGfFormToGfEntryConnection
. - dev: Make original form data available via the Form model.
- chore: Update Composer deps.
- chore: Fix a few GraphQL descriptions that were missing a closing
.
.