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

author.fragment.graphql « fragments « snippets « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2684bd0fa37f21c7145acbf81f9d27bc2e9ac9a3 (plain)
1
2
3
4
5
6
7
8
fragment Author on Snippet {
  author {
    name,
    avatarUrl,
    username,
    webUrl
  }
}