Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Authors

Abhi Aiyer <abhiaiyer91@gmail.com>
Avindra Goolcharan <aavindraa@gmail.com>
Ben James <benhjames@sky.com>
Brady Whitten <bwhitten518@gmail.com>
Brett Jurgens <brett@brettjurgens.com>
Expand Down Expand Up @@ -68,4 +69,4 @@ Andrew E. Rhyne <rhyneandrew@gmail.com>
Miroslav Simulcik <simulcik.miro@gmail.com>
Stephen Potter <me@stevepotter.me>
Michaël De Boey <info@michaeldeboey.be>
Andreas Bergenwall <abergenw@gmail.com>
Andreas Bergenwall <abergenw@gmail.com>
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Change log

### vNEXT
- Fix: broken edge case when setting up fragment matching with Typescript by fixing types on `IntrospectionResultData` [PR #1763](https://github.com/apollographql/apollo-client/pull/1763)

### v1.4.0
- Feature: Add `operationName` to Redux actions where possible [PR #1676](https://github.com/apollographql/apollo-client/pull/1676)
Expand Down
4 changes: 2 additions & 2 deletions src/data/fragmentMatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export type IntrospectionResultData = {
types: [{
kind: string,
name: string,
possibleTypes: [{
possibleTypes: {
name: string,
}],
}[],
}],
},
};
Expand Down