console/packages/libraries/cli/examples/aws.graphql

10 lines
132 B
GraphQL
Raw Normal View History

2022-05-18 07:26:57 +00:00
type Query {
test: Post!
}
type Post @model {
id: ID! # id: ID! is a required attribute.
title: String!
tags: [String!]!
}