Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_topics_search.query.graphql « queries « topics « settings « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b193165062a71ef7958b4b33d740a6512f079d19 (plain)
1
2
3
4
5
6
7
8
9
query searchProjectTopics($search: String) {
  topics(search: $search) {
    nodes {
      id
      name
      avatarUrl
    }
  }
}