@pothos-examples/helix
v3.1.2
Published
This example uses the following packages:
Downloads
95
Readme
A GraphQL API built with graphql-helix
This example uses the following packages:
@pothos/core
: For building the schema@pothos/plugin-prism
: For prisma based type definitions, and efficient queriesgraphql-helix
: For executing queries based on incoming requests
Schema
type Comment {
author: User!
comment: String!
id: ID!
post: Post!
}
type Post {
author: User!
comments: [Comment!]!
content: String!
id: ID!
title: String!
}
type Query {
post(id: ID!): Post
posts(skip: Int, take: Int): [Post!]!
user(id: ID!): User
}
type User {
comments: [Comment!]!
firstName: String!
fullName: String!
id: ID!
lastName: String!
posts: [Post!]!
}