-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
removed circular dep, fixed npm devDep, Angular2-AOT compatibility #778
Conversation
- removed circular dependency in data/store.ts - added "ApolloClient" to the named exports to make it compatible with Angular2 AOT compile - moved dev @types to devDependencies otherwise they potentially brake projects that are importing apollo-client
@metzc: Thank you for submitting a pull request! Before we can merge it, you'll need to sign the Meteor Contributor Agreement here: https://contribute.meteor.com/ |
@@ -43,3 +43,4 @@ matt debergalis <[email protected]> | |||
Vladimir Guguiev <[email protected]> | |||
Edvin Eriksson <[email protected]> | |||
Agustin Polo <[email protected]> | |||
Chris Metz <[email protected]> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aw, not a real email?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wondered.. isn't this openly readable for any email scanner? Also wouldn't put my address anywhere else openly. What do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Up to you. I put my real email on GitHub, but I understand not everyone wants to.
@@ -34,7 +36,7 @@ function isVariable(value: Value): value is Variable { | |||
return value.kind === 'Variable'; | |||
} | |||
|
|||
function isObject(value: Value): value is ObjectValue { | |||
function isGraphObject(value: Value): value is ObjectValue { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe isGraphQLObjectValue
would be a good name. This looks for GraphQL object literals in the AST.
Merging here: #780 |
TODO: