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

organization.query.graphql « queries « graphql « shared « organizations « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d95786fcb0509e7bcc5a06f7a163b40b6d0a8cc (plain)
1
2
3
4
5
6
7
8
9
query getOrganization($id: ID!) {
  organization(id: $id) @client {
    id
    name
    descriptionHtml
    avatarUrl
    webUrl
  }
}