17 lines
196 B
GraphQL
17 lines
196 B
GraphQL
#import "./author.fragment.graphql"
|
|
|
|
fragment AlertNote on Note {
|
|
id
|
|
author {
|
|
id
|
|
state
|
|
...Author
|
|
}
|
|
body
|
|
bodyHtml
|
|
createdAt
|
|
discussion {
|
|
id
|
|
}
|
|
systemNoteIconName
|
|
}
|