graphql-s2s icon indicating copy to clipboard operation
graphql-s2s copied to clipboard

Directives on separate lines aren't supported

Open thehappycoder opened this issue 5 years ago • 0 comments

input BaseForm {
  inParent: String
}

input Form inherits BaseForm {
  newOne: String
  inParent: String
    @snippet(
      category: "category"
      content: "content"
    )
}

transpiles incorrectly

thehappycoder avatar Dec 13 '19 07:12 thehappycoder