Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
hayes committed Sep 9, 2024
1 parent b16d6f2 commit c76853f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ type Query {
post(id: ID!): Post
posts(after: String, before: String, category: String, first: Int, last: Int): QueryPostsConnection
user(id: ID!): User
userWithInput(input: QueryUserWithInputInput!): User
}
type QueryPostsConnection {
Expand All @@ -79,6 +80,10 @@ type QueryPostsConnectionEdge {
node: Post
}
input QueryUserWithInputInput {
id: ID!
}
type User implements Node {
bio: String
email: String
Expand Down

0 comments on commit c76853f

Please sign in to comment.