Course
No description
type Course implements Record {
id: ID!
title: String!
updatedAt: Date!
}
Fields
id
● ID!
non-null scalar common
title
● String!
non-null scalar common
updatedAt
● Date!
non-null scalar common
Interfaces
Record
interface common
Example
{
"id": 5,
"title": "GraphQL Markdown",
"updatedAt": "1970-01-01"
}