Slide 38
Slide 38 text
Filling the “clear space”
Constant FilmTYpe = new GraphQLObjectType({
name: 'Film',
description: 'A single film.',
fields: () => (
{
title: {
type: GraphQLString,
description: 'The title of this film.',
},
episodeID: {
type: GraphQLInt,
description: 'The episode number of this film.',
},
openingCrawl: {
type: GraphQLString,
description: ‘The opening paragraphs at the beginning of this film.',
},
director: {
type: GraphQLString,
description: ‘The name of the director of this film.',
},
@jwscott22