We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is a very common scenario:
// Comment.graphql #import './User' type Comment { title: String! isDone: Boolean! createdAt: Date! user: User } // User.graphql #import './Comment' type User { _id: ID! firstName: String! lastName: String! age: Int comments: [Comment] }
Fails with:
W20180310-07:05:55.673(2)? (STDERR) TypeError: Cannot read property 'filter' of undefined W20180310-07:05:55.673(2)? (STDERR) at unique (/Users/theodor/Projects/graphql-live/.meteor/local/build/programs/server/app/app.js:30:19) W20180310-07:05:55.673(2)? (STDERR) at Comment.graphql.js (/Users/theodor/Projects/graphql-live/.meteor/local/build/programs/server/app/app.js:43:44) W20180310-07:05:55.673(2)? (STDERR) at fileEvaluate (packages/modules-runtime.js:343:9) W20180310-07:05:55.674(2)? (STDERR) at require (packages/modules-runtime.js:238:16)
The text was updated successfully, but these errors were encountered:
I have the same error. Could you share your solve?
Sorry, something went wrong.
I try remove #import './User', It still work fine. Don't understand???
#import './User'
+1 have any solve this problem???
No branches or pull requests
This is a very common scenario:
Fails with:
The text was updated successfully, but these errors were encountered: