Mayank1791989 / gql

112 stars 19 forks source link

Crush when implementing interface #56

Closed linonetwo closed 7 years ago

linonetwo commented 7 years ago

when there is an interface, and we write an empty type implementing it, it crashes.

interface Object {
  ID: ID!
  properties: [Property]!
}

type DocumentObject implements Object {

}

Vscode said it crashes too many times so won't start again.

Mayank1791989 commented 7 years ago

I think this bug is already fixed in v2.3.1 (commit d36d075). Make sure you are using the lastest version.

linonetwo commented 7 years ago

thanks!