fdfef1d496
* WIP * feat: readonly issues in connectors * fix created at on replies * filter out by resourceStringId * show label name if just one * generate gql * linting * linting
16 lines
282 B
TypeScript
16 lines
282 B
TypeScript
import { graphql } from '~~/lib/common/generated/gql'
|
|
|
|
export const issuesListQuery = graphql(`
|
|
query IssuesList($projectId: String!) {
|
|
project(id: $projectId) {
|
|
id
|
|
issues {
|
|
totalCount
|
|
items {
|
|
...IssuesItem
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`)
|