console/packages/libraries/cli/examples/aws.graphql
Kamil Kisiela dc3bc1ec87 Hello
2022-05-18 09:26:57 +02:00

9 lines
132 B
GraphQL

type Query {
test: Post!
}
type Post @model {
id: ID! # id: ID! is a required attribute.
title: String!
tags: [String!]!
}