debian-mirror-gitlab/doc/api/graphql/custom_emoji.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
3.3 KiB
Markdown
Raw Normal View History

2021-09-30 23:02:18 +05:30
---
stage: Plan
group: Project Management
2022-11-25 23:54:43 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
2021-09-30 23:02:18 +05:30
---
2021-11-11 11:23:49 +05:30
# Use custom emojis with GraphQL **(FREE)**
2021-09-30 23:02:18 +05:30
2023-01-13 00:05:48 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/37911) in GitLab 13.6 [with a flag](../../administration/feature_flags.md) named `custom_emoji`. Disabled by default.
> - Enabled on GitLab.com in GitLab 14.0.
2021-09-30 23:02:18 +05:30
2023-01-13 00:05:48 +05:30
FLAG:
On self-managed GitLab, by default this feature is not available. To make it available, ask an administrator to [enable the feature flag](../../administration/feature_flags.md) named `custom_emoji`.
On GitLab.com, this feature is available.
This feature is ready for production use.
2021-09-30 23:02:18 +05:30
2023-01-13 00:05:48 +05:30
To use custom emojis in comments and descriptions, you can add them to a group using the GraphQL API.
2021-09-30 23:02:18 +05:30
Parameters:
| Attribute | Type | Required | Description |
| :----------- | :------------- | :--------------------- | :------------------------------------------------------------------------ |
2023-04-23 21:23:45 +05:30
| `group_path` | integer/string | **{check-circle}** Yes | ID or [URL-encoded path of the group](../rest/index.md#namespaced-path-encoding) |
2021-09-30 23:02:18 +05:30
| `name` | string | **{check-circle}** Yes | Name of the custom emoji. |
| `file` | string | **{check-circle}** Yes | URL of the custom emoji image. |
## Create a custom emoji
```graphql
mutation CreateCustomEmoji($groupPath: ID!) {
2023-01-13 00:05:48 +05:30
createCustomEmoji(input: {groupPath: $groupPath, name: "party-parrot", url: "https://cultofthepartyparrot.com/parrots/hd/parrot.gif"}) {
2021-09-30 23:02:18 +05:30
clientMutationId
2023-01-13 00:05:48 +05:30
customEmoji {
name
}
2021-09-30 23:02:18 +05:30
errors
}
}
```
2023-01-13 00:05:48 +05:30
After adding a custom emoji to the group, members can use it in the same way as other emojis in the comments.
2021-09-30 23:02:18 +05:30
## Get custom emoji for a group
```graphql
query GetCustomEmoji($groupPath: ID!) {
group(fullPath: $groupPath) {
id
customEmoji {
nodes {
name
}
}
}
}
```
## Set up the GraphiQL explorer
This procedure presents a substantive example that you can copy and paste into GraphiQL
explorer. GraphiQL explorer is available for:
- GitLab.com users at [https://gitlab.com/-/graphql-explorer](https://gitlab.com/-/graphql-explorer).
- Self-managed users at `https://gitlab.example.com/-/graphql-explorer`.
1. Copy the following code excerpt:
```graphql
query GetCustomEmoji {
group(fullPath: "gitlab-org") {
id
customEmoji {
nodes {
name,
url
}
}
}
}
```
1. Open the [GraphiQL explorer tool](https://gitlab.com/-/graphql-explorer).
1. Paste the `query` listed above into the left window of your GraphiQL explorer tool.
2022-07-23 23:45:48 +05:30
1. Select **Play** to get the result shown here:
2021-09-30 23:02:18 +05:30
![GraphiQL explore custom emoji query](img/custom_emoji_query_example.png)
For more information on:
- GraphQL specific entities, such as Fragments and Interfaces, see the official
[GraphQL documentation](https://graphql.org/learn/).
- Individual attributes, see the [GraphQL API Resources](reference/index.md).