Hello everyone, I would like to contribute with a ...
# contribute-code
i
Hello everyone, I would like to contribute with a new page to manage TAGs. But, for this It would be incredible to have a listTags query in the graphql. I dont have much experience with java. Because of that, I want to know if anyone can help me implementing that graphql call and the frontend functionality I can do by myself.
In addition, I have two open PRs that I would like to be evaluated. Here are the links: • https://github.com/datahub-project/datahub/pull/8292https://github.com/datahub-project/datahub/pull/8231
l
I think u can use searchAcrossEntities graphql query to filter all tags
Copy code
query searchAcrossEntitiesTags($input: SearchAcrossEntitiesInput!) {
  searchAcrossEntities(input: $input) {
    count
    total
    searchResults {
      entity {
        urn
      }
    }
  }
} 
input can be

{
  "input": {
    "types": ["TAG"], 
    "query": "*", 
    "orFilters": {
      "and": []},
      "count": 500
  }
}
i
Look.. I think this might work on!! I'll test it!