Mayank1791989 / gql

112 stars 19 forks source link

FindAllReferences for core graphql types fails #23

Open kumarharsh opened 7 years ago

kumarharsh commented 7 years ago

FindAllReferences for core graphql types fails, with this error:

[Error - 7:11:03 PM] Request textDocument/references failed.
  Message: Request textDocument/references failed with message: Cannot read property 'concat' of undefined
  Code: -32603 

Example query:

type UserTrophy {
    id: ID! # fails
    competition: Competition! # works
    image: String!
    name: String!
    description: String!
    rank: Int!
}