Open mecm1993 opened 5 years ago
The repo data is not updated due to validation after calling searchRepos query,
searchRepos
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.
__typename
false
The repo data is not updated due to validation after calling
searchRepos
query,Today, the query result doesn't return the property
__typename
, therefore the return value of the filter is alwaysfalse
. I modified the query to be able to return the__typename
.