debian-mirror-gitlab/app/assets/javascripts/design_management/graphql/fragments/designNote.fragment.graphql

30 lines
427 B
GraphQL
Raw Normal View History

2020-05-24 23:13:21 +05:30
#import "./diffRefs.fragment.graphql"
#import "~/graphql_shared/fragments/author.fragment.graphql"
#import "./note_permissions.fragment.graphql"
fragment DesignNote on Note {
id
author {
...Author
}
body
bodyHtml
createdAt
2020-06-23 00:09:42 +05:30
resolved
2020-05-24 23:13:21 +05:30
position {
diffRefs {
...DesignDiffRefs
}
x
y
height
width
}
userPermissions {
...DesignNotePermissions
}
discussion {
id
}
}