Prisma + Appoloクライアント経由でGraphQLクエリを作成した際に、引数に「配列」を渡す方法の備忘録
apollo/queries/getPosts.graphql
query GetPosts($ids: [Int!]) {
posts(where: {
Category: {
Id_in: $ids
}
}) {
Id
Name
CreatedAt
UpdatedAt
}
}
- !(エクスクラメーションマーク)は、null制約を付与している
- ポイントは、引数で宣言する配列は
Int[]
ではなく[Int]
と表現すること
参考:Data modeling, Array of strings - Questions - Prisma Forum