summaryrefslogtreecommitdiffstats
path: root/src/services/graphql/comments.query.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/graphql/comments.query.ts')
-rw-r--r--src/services/graphql/comments.query.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/services/graphql/comments.query.ts b/src/services/graphql/comments.query.ts
new file mode 100644
index 0000000..ef93e89
--- /dev/null
+++ b/src/services/graphql/comments.query.ts
@@ -0,0 +1,21 @@
+/**
+ * Query the comments data by post id.
+ */
+export const commentsQuery = `query CommentsByPostId($contentId: ID!) {
+ comments(where: {contentId: $contentId, order: ASC, orderby: COMMENT_DATE}) {
+ nodes {
+ approved
+ author {
+ node {
+ gravatarUrl
+ name
+ url
+ }
+ }
+ content
+ databaseId
+ date
+ parentDatabaseId
+ }
+ }
+}`;