16 lines
286 B
GraphQL
16 lines
286 B
GraphQL
|
#import "~/graphql_shared/fragments/author.fragment.graphql"
|
||
|
|
||
|
query getProjectIssue($iid: String!, $fullPath: ID!) {
|
||
|
project(fullPath: $fullPath) {
|
||
|
issue(iid: $iid) {
|
||
|
assignees {
|
||
|
nodes {
|
||
|
...Author
|
||
|
id
|
||
|
state
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|