5
5
Erc20AmountFragment ,
6
6
GroupFragment ,
7
7
PaginatedResultInfoFragment ,
8
+ PostFragment ,
8
9
PostReactionFragment ,
9
10
RawKeyValueFragment ,
10
- ReferencedPostFragment ,
11
11
UnknownAccountActionFragment ,
12
12
} from './fragments' ;
13
13
import { type RequestOf , graphql } from './graphql' ;
@@ -65,10 +65,10 @@ export const ReactionNotificationFragment = graphql(
65
65
...NotificationAccountPostReaction
66
66
}
67
67
post {
68
- ...ReferencedPost
68
+ ...Post
69
69
}
70
70
}` ,
71
- [ NotificationAccountPostReactionFragment , ReferencedPostFragment ] ,
71
+ [ NotificationAccountPostReactionFragment , PostFragment ] ,
72
72
) ;
73
73
export type ReactionNotification = FragmentOf < typeof ReactionNotificationFragment > ;
74
74
@@ -77,10 +77,10 @@ const CommentNotificationFragment = graphql(
77
77
__typename
78
78
id
79
79
comment {
80
- ...ReferencedPost
80
+ ...Post
81
81
}
82
82
}` ,
83
- [ ReferencedPostFragment ] ,
83
+ [ PostFragment ] ,
84
84
) ;
85
85
export type CommentNotification = FragmentOf < typeof CommentNotificationFragment > ;
86
86
@@ -105,10 +105,10 @@ const RepostNotificationFragment = graphql(
105
105
...NotificationAccountRepost
106
106
}
107
107
post {
108
- ...ReferencedPost
108
+ ...Post
109
109
}
110
110
}` ,
111
- [ NotificationAccountRepostFragment , ReferencedPostFragment ] ,
111
+ [ NotificationAccountRepostFragment , PostFragment ] ,
112
112
) ;
113
113
export type RepostNotification = FragmentOf < typeof RepostNotificationFragment > ;
114
114
@@ -117,10 +117,10 @@ const QuoteNotificationFragment = graphql(
117
117
__typename
118
118
id
119
119
quote {
120
- ...ReferencedPost
120
+ ...Post
121
121
}
122
122
}` ,
123
- [ ReferencedPostFragment ] ,
123
+ [ PostFragment ] ,
124
124
) ;
125
125
export type QuoteNotification = FragmentOf < typeof QuoteNotificationFragment > ;
126
126
@@ -129,10 +129,10 @@ const MentionNotificationFragment = graphql(
129
129
__typename
130
130
id
131
131
post {
132
- ...ReferencedPost
132
+ ...Post
133
133
}
134
134
}` ,
135
- [ ReferencedPostFragment ] ,
135
+ [ PostFragment ] ,
136
136
) ;
137
137
export type MentionNotification = FragmentOf < typeof MentionNotificationFragment > ;
138
138
0 commit comments