Skip to content

Commit

Permalink
Release/v0.10.4 (#228)
Browse files Browse the repository at this point in the history
* chore: update composer deps

* chore: version bump

* chore: cleanup

* fix: end GraphQL descriptions with `.`.

* ..

* chore: update changelog
  • Loading branch information
justlevine authored Mar 4, 2022
1 parent aec44d1 commit b492a61
Show file tree
Hide file tree
Showing 15 changed files with 268 additions and 219 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# Changelog

## v0.10.4 - Entry Counts and Quiz Results

This _minor_ release adds the a form's total entries `count` and its `quizResults` to the `GfFormToGfEntryConnection` connection.

E.g.:
```graphql
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` to `GfFormToGfEntryConnection`.
- feat: Add `quizResults` to `GfFormToGfEntryConnection`.
- 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 `.`.

## v0.10.3 - WP Jamstack Deployments Support

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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
A WordPress plugin that provides a GraphQL API for interacting with Gravity Forms.


[![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)
[![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)

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

0 comments on commit b492a61

Please sign in to comment.