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