これを行う
query {
postsConnection(where: {
status: PUBLISHED
}) {
aggregate {
count
}
edges {
cursor
node {
id
slug
}
}
}
}
postsConnection
公開された投稿を教えてくれます。
モデルには、フィールドに列挙型のPost
配列があります。これは投稿ですCategory
categories
datamodel
enum Category {
TECH
FIN
DIGIMARK
CODING
TUTORIAL
HOWTO
WRITING
INSPIRE
SCIENCE
POLITICS
LIFESTYLE
}
type Post {
id: ID!
title: String!
editorSerializedOutput: Json!
editorCurrentContent: Json!
editorHtml: String!
updatedAt: DateTime!
createdAt: DateTime!
author: User
authorId: String!
categories: [Category!]!
thumbnail: Json!
status: PostStatus!
slug: String!
}
PostConnection
私の質問は、特定のカテゴリの投稿を取得するには、どの Prisma Query を作成する必要があるかということです。