File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1+ ### 0.10.1
2+ - Remove debug option from module settigs in favor of ` $config-debug = true|false ` API.
3+ - From now only templates selected as legal and those that have Access control enabled will be served.
4+ - Remove PageUnionType in favor of PageIntefaceType.
5+ - Introduce UserType for pages that represent system users.
6+ - Mark fields NonNull if they are marked as ` $field->required = true ` .
7+ - Implement simple create Mutation on a per template basis.
8+
19### 0.9.1
210- Fix GraphQLServerUrl property bug.
311
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class ProcessGraphQL extends Process implements Module {
1313 {
1414 return array(
1515 'title' => 'GraphQL',
16- 'version' => '0.9.1 ',
16+ 'version' => '0.10.0 ',
1717 'summary' => 'GraphQL for ProcessWire.',
1818 'href' => 'https://github.com/dadish/ProcessGraphql',
1919 'singular' => true,
Original file line number Diff line number Diff line change 55use Youshido \GraphQL \Field \AbstractField ;
66use Youshido \GraphQL \Execution \ResolveInfo ;
77use Youshido \GraphQL \Exception \ValidationException ;
8+ use Youshido \GraphQL \Exception \ResolveException ;
89use Youshido \GraphQL \Config \Field \FieldConfig ;
910use Youshido \GraphQL \Field \InputField ;
1011
You can’t perform that action at this time.
0 commit comments