JetBrains / js-graphql-intellij-plugin

GraphQL language support for WebStorm, IntelliJ IDEA and other IDEs based on the IntelliJ Platform.
https://jimkyndemeyer.github.io/js-graphql-intellij-plugin/
MIT License
879 stars 97 forks source link

feature: Automatic copy of fields in interface #687

Open StringKe opened 9 months ago

StringKe commented 9 months ago

Fields in the implemented interface can be automatically copied to the current type via shortcuts or default behavior.

interface ModelBase {
    createdAt: DateTime!
    createdBy: String
    updatedAt: DateTime!
    updatedBy: String
    deletedAt: DateTime
    deletedBy: String
}

type User implements ModelBase {
"Auto copy all flieds"
}