Skip to content

Commit 7ff9afd

Browse files
committed
fix up some schema links
1 parent c8ef50e commit 7ff9afd

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

server/src/core/server/graph/schema/schema.graphql

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4125,7 +4125,12 @@ type ExternalMedia {
41254125
"""
41264126
CommentMedia is the various media types that can be attached to a Comment.
41274127
"""
4128-
union CommentMedia = GiphyMedia | TwitterMedia | YouTubeMedia | ExternalMedia | TenorMedia
4128+
union CommentMedia =
4129+
GiphyMedia
4130+
| TwitterMedia
4131+
| YouTubeMedia
4132+
| ExternalMedia
4133+
| TenorMedia
41294134

41304135
type CommentRevision {
41314136
"""
@@ -4298,29 +4303,29 @@ type CommentTagCounts {
42984303
}
42994304

43004305
"""
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)
43034308
as a reply.
43044309
"""
43054310
type Comment @cacheControl(maxAge: 5) {
43064311
"""
4307-
id is the identifier of the [Comment](/api/objects/Comment).
4312+
id is the identifier of the [Comment](/api/types/objects/Comment).
43084313
"""
43094314
id: ID!
43104315

43114316
"""
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
43134318
`revision.body`.
43144319
"""
43154320
body: String
43164321

43174322
"""
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.
43194324
"""
43204325
revision: CommentRevision
43214326

43224327
"""
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
43244329
edit last.
43254330
"""
43264331
revisionHistory: [CommentRevision!]!

0 commit comments

Comments
 (0)