gitlab-org--gitlab-foss/app/assets/javascripts/design_management/graphql/fragments/design_note.fragment.graphql

35 lines
479 B
GraphQL

#import "./diff_refs.fragment.graphql"
#import "~/graphql_shared/fragments/author.fragment.graphql"
#import "./note_permissions.fragment.graphql"
fragment DesignNote on Note {
id
author {
...Author
}
body
bodyHtml
createdAt
resolved
position {
diffRefs {
...DesignDiffRefs
}
x
y
height
width
}
userPermissions {
...DesignNotePermissions
}
discussion {
id
notes {
nodes {
id
}
}
}
}