We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c211170 commit c65eb3fCopy full SHA for c65eb3f
CHANGELOG.md
@@ -0,0 +1,24 @@
1
+# 1.0.0
2
+
3
+- Improve docs
4
+- Add `create-react-app` examples
5
+- Support GraphQL interfaces
6
+- Support GraphQL union types
7
+- Support fragments and inline fragments
8
+- Support `__typename` selection
9
+- Support alias in selections
10
+- Support custom scalar types
11
+- Support errors
12
+- Add typed version of `useSubscription`
13
14
+Backward incompatible change:
15
16
+To support errors, the argument `data` changed to `result` which can contain both `data` and `errors`:
17
18
+```js
19
+// old
20
+apolloMock(documentNode, variables, { authors: [] });
21
22
+// new
23
+apolloMock(documentNode, variables, { data: { authors: [] } });
24
+```
0 commit comments