12 lines
175 B
GraphQL
12 lines
175 B
GraphQL
#import "~/graphql_shared/fragments/user.fragment.graphql"
|
|
|
|
fragment Discussion on Note {
|
|
id
|
|
body
|
|
bodyHtml
|
|
systemNoteIconName
|
|
createdAt
|
|
author {
|
|
...User
|
|
}
|
|
}
|