Skip to content
This repository was archived by the owner on Sep 27, 2023. It is now read-only.

Commit b3023f1

Browse files
committed
Update fixtures
1 parent 5910f78 commit b3023f1

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
mutation AppendEdgeMutation(
2+
$input: CommentCreateInput!,
3+
$connections: [String!]!
4+
) {
5+
commentCreate(input: $input) {
6+
feedbackCommentEdge @appendEdge(connections: $connections) {
7+
cursor
8+
node {
9+
id
10+
}
11+
}
12+
}
13+
}
14+
15+
mutation PrependEdgeMutation(
16+
$input: CommentCreateInput!,
17+
$connections: [String!]!
18+
) {
19+
commentCreate(input: $input) {
20+
feedbackCommentEdge @prependEdge(connections: $connections) {
21+
cursor
22+
node {
23+
id
24+
}
25+
}
26+
}
27+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
mutation DeleteRecordMutation(
2+
$input: CommentDeleteInput!
3+
) {
4+
commentDelete(input: $input) {
5+
deletedCommentId @deleteRecord
6+
}
7+
}

0 commit comments

Comments
 (0)