debian-mirror-gitlab/app/assets/javascripts/issues/new/queries/issues.query.graphql

30 lines
542 B
GraphQL
Raw Normal View History

2019-02-15 15:39:39 +05:30
query issueSuggestion($fullPath: ID!, $search: String) {
project(fullPath: $fullPath) {
2022-01-26 12:08:38 +05:30
id
2019-02-15 15:39:39 +05:30
issues(search: $search, sort: updated_desc, first: 5) {
edges {
node {
2022-01-26 12:08:38 +05:30
id
2019-02-15 15:39:39 +05:30
iid
title
confidential
userNotesCount
upvotes
webUrl
state
closedAt
createdAt
updatedAt
author {
2022-01-26 12:08:38 +05:30
id
2019-02-15 15:39:39 +05:30
name
username
avatarUrl
webUrl
}
}
}
}
}
}