developersdo / opensource

🔦 Discover the open source ecosystem related to the Dominican Republic!
https://developersdo.github.io/opensource?utm_source=github
MIT License
66 stars 41 forks source link

Fix in searchRepos query #133

Open mecm1993 opened 5 years ago

mecm1993 commented 5 years ago

The repo data is not updated due to validation after calling searchRepos query,

    response.search.nodes = response.search.nodes.filter((node) => {
      return node.__typename === 'Repository' && !node.isPrivate
    })

Today, the query result doesn't return the property __typename, therefore the return value of the filter is always false. I modified the query to be able to return the __typename.