You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,12 +15,14 @@
15
15
- Add `net10.0` as a target
16
16
- When using Offset Paging the total items expression is now only executed if the query requests `hasNextPage` or `totalItems` fields
17
17
- When using Connection Paging the total count expression is now only executed if the query requests `totalCount` or `pageInfo` fields or the 'last' argument is used
18
+
- Added `IField.AsService()` to signal that a field should (or can) be treated as a service field. This means null-checks are differently and they are executed after EF related calls (if `ExecutionOptions.ExecuteServiceFieldsSeparately = true`). Useful for fields that operate with data fully in-memory and do not need a registered service to fetch data or work
18
19
19
20
## Fixes
20
21
21
22
-#481 - handle `ResolveAsync` on a top level field
22
23
-#488 - Support async fields with `[GraphQLField]`
23
24
-#487 - Fix `ResolveAsync` with arguments
25
+
- As per spec - `_Type.fields` should be `null` for `INPUT_OBJECT`. Previously the `inputFields` were repeated.
0 commit comments