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