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

Commit 7019827

Browse files
committed
Note the GraphQL query we will need
1 parent aaee233 commit 7019827

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/*
2+
query MyQuery {
3+
comments(where: {contentId: "1148"}) {
4+
pageInfo {
5+
endCursor
6+
hasNextPage
7+
hasPreviousPage
8+
startCursor
9+
}
10+
edges {
11+
node {
12+
databaseId
13+
content(format: RENDERED)
14+
parentDatabaseId
15+
approved
16+
id
17+
}
18+
}
19+
}
20+
}
21+
*/

0 commit comments

Comments
 (0)