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

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