-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Description
Hello
Thanks for creating this plugin :)
Can this plugin have ability to import graphql files inside the graphql file?
Like adding a additional ability for importing .gql and .graphql files.
Like:
./attachment.graphql
fragment attachmentFragment on Attachment {
id
url
thumbnailUrl
}./user.graphql
#import "./attachment.graphql"
fragment userFragment on User {
id
nick
avatar {
...attachmentFragment
}
}Expected output would be like:
fragment userFragment on User {
id
nick
avatar {
...attachmentFragment
}
}
fragment attachmentFragment on Attachment {
id
url
thumbnailUrl
}Metadata
Metadata
Assignees
Labels
No labels