Files
relspecgo/tests/assets/graphql/relations.graphql
2025-12-28 11:41:55 +02:00

17 lines
210 B
GraphQL

# GraphQL schema with relationships
type User {
id: ID!
email: String!
name: String!
posts: [Post!]!
}
type Post {
id: ID!
title: String!
content: String
published: Boolean!
author: User!
}