File tree Expand file tree Collapse file tree 1 file changed +12
-7
lines changed
server/src/core/server/graph/schema Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -4125,7 +4125,12 @@ type ExternalMedia {
4125
4125
"""
4126
4126
CommentMedia is the various media types that can be attached to a Comment.
4127
4127
"""
4128
- union CommentMedia = GiphyMedia | TwitterMedia | YouTubeMedia | ExternalMedia | TenorMedia
4128
+ union CommentMedia =
4129
+ GiphyMedia
4130
+ | TwitterMedia
4131
+ | YouTubeMedia
4132
+ | ExternalMedia
4133
+ | TenorMedia
4129
4134
4130
4135
type CommentRevision {
4131
4136
"""
@@ -4298,29 +4303,29 @@ type CommentTagCounts {
4298
4303
}
4299
4304
4300
4305
"""
4301
- Comment is a comment left by a [User](/api/objects/User) on an
4302
- [Story](/api/objects/Story) or another [Comment](/api/objects/Comment)
4306
+ Comment is a comment left by a [User](/api/types/ objects/User) on an
4307
+ [Story](/api/types/ objects/Story) or another [Comment](/api/types /objects/Comment)
4303
4308
as a reply.
4304
4309
"""
4305
4310
type Comment @cacheControl (maxAge : 5 ) {
4306
4311
"""
4307
- id is the identifier of the [Comment](/api/objects/Comment).
4312
+ id is the identifier of the [Comment](/api/types/ objects/Comment).
4308
4313
"""
4309
4314
id : ID !
4310
4315
4311
4316
"""
4312
- body is the content of the [Comment](/api/objects/Comment), and is an alias to the body of the
4317
+ body is the content of the [Comment](/api/types/ objects/Comment), and is an alias to the body of the
4313
4318
`revision.body`.
4314
4319
"""
4315
4320
body : String
4316
4321
4317
4322
"""
4318
- revision is the current revision of the [Comment](/api/objects/Comment)'s body.
4323
+ revision is the current revision of the [Comment](/api/types/ objects/Comment)'s body.
4319
4324
"""
4320
4325
revision : CommentRevision
4321
4326
4322
4327
"""
4323
- revisionHistory stores the previous [CommentRevision](/api/objects/comment-revision)'s, with the most recent
4328
+ revisionHistory stores the previous [CommentRevision](/api/types/ objects/comment-revision)'s, with the most recent
4324
4329
edit last.
4325
4330
"""
4326
4331
revisionHistory : [CommentRevision ! ]!
You can’t perform that action at this time.
0 commit comments