opensource icon indicating copy to clipboard operation
opensource copied to clipboard

Fix in searchRepos query

Open mecm1993 opened this issue 6 years ago • 0 comments

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.

mecm1993 avatar Jun 12 '19 04:06 mecm1993