How can I comment out import statements?
Closed this issue ยท 3 comments
marktani commented
I want to "comment out" import statements, how does that work?
What about this:
# import User from file.graphql
# # add later:
# # import Post from invalid.graphql
kbrandwijk commented
https://github.com/graphcool/graphql-import/blob/master/src/index.ts#L34
Your best bet is to change the word import ๐
# impport User from file.graphql
works fine
tjpeden commented
I've had success with
## import User from 'file.graphql'