mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
9 lines
132 B
GraphQL
9 lines
132 B
GraphQL
type Query {
|
|
test: Post!
|
|
}
|
|
|
|
type Post @model {
|
|
id: ID! # id: ID! is a required attribute.
|
|
title: String!
|
|
tags: [String!]!
|
|
}
|