Skip to content

Commit b492a61

Browse files
authored
Release/v0.10.4 (#228)
* chore: update composer deps * chore: version bump * chore: cleanup * fix: end GraphQL descriptions with `.`. * .. * chore: update changelog
1 parent aec44d1 commit b492a61

File tree

15 files changed

+268
-219
lines changed

15 files changed

+268
-219
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
11
# Changelog
22

3+
## v0.10.4 - Entry Counts and Quiz Results
4+
5+
This _minor_ release adds the a form's total entries `count` and its `quizResults` to the `GfFormToGfEntryConnection` connection.
6+
7+
E.g.:
8+
```graphql
9+
query {
10+
gfForm(id: $id, idType: $idType) {
11+
entries {
12+
count # the number of entries submitted
13+
quizResults { # The quiz results summary
14+
averagePercentage
15+
passRate
16+
gradeCounts { # the frequency of each grade
17+
count
18+
grade
19+
}
20+
fieldCounts { ## the individual field breakdown
21+
correctCount
22+
formField {
23+
node {
24+
label
25+
}
26+
}
27+
choiceCounts { ## the frequency of each answer
28+
count
29+
text
30+
}
31+
}
32+
}
33+
}
34+
}
35+
}
36+
```
37+
38+
- feat: Add `count` to `GfFormToGfEntryConnection`.
39+
- feat: Add `quizResults` to `GfFormToGfEntryConnection`.
40+
- dev: Make original form data available via the Form model.
41+
- chore: Update Composer deps.
42+
- chore: Fix a few GraphQL descriptions that were missing a closing `.`.
43+
344
## v0.10.3 - WP Jamstack Deployments Support
445

546
This _minor_ release adds support for [WP Jamstack Deployments](https://github.com/crgeary/wp-jamstack-deployments). We also fixed a bug where non-authenticated users could not access their own `entry` on the `submitGfForm` payload.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
A WordPress plugin that provides a GraphQL API for interacting with Gravity Forms.
55

66

7-
[![Project Status: Active.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) ![Packagist License](https://img.shields.io/packagist/l/harness-software/wp-graphql-gravity-forms?color=green)![Packagist Version](https://img.shields.io/packagist/v/harness-software/wp-graphql-gravity-forms?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/harness-software/wp-graphql-gravity-forms/v0.10.3) ![GitHub forks](https://img.shields.io/github/forks/harness-software/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/harness-software/wp-graphql-gravity-forms?style=social)
7+
[![Project Status: Active.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) ![Packagist License](https://img.shields.io/packagist/l/harness-software/wp-graphql-gravity-forms?color=green)![Packagist Version](https://img.shields.io/packagist/v/harness-software/wp-graphql-gravity-forms?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/harness-software/wp-graphql-gravity-forms/v0.10.4) ![GitHub forks](https://img.shields.io/github/forks/harness-software/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/harness-software/wp-graphql-gravity-forms?style=social)
88

99
* [Join the WPGraphQL community on Slack.](https://join.slack.com/t/wp-graphql/shared_invite/zt-3vloo60z-PpJV2PFIwEathWDOxCTTLA)
1010
* [Documentation](#documentation)

0 commit comments

Comments
 (0)