Const pageInfo
pageInfo: GraphQLObjectType = new GraphQLObjectType({name: `${name}PageInfo`,description: 'Determies the current page metadata',fields: {startCursor: {description: 'The starting GUID for the tree',type: GraphQLNonNullGuid,},hasNextPage: {description: 'Determines if there are more pages of conversation formations after this page',type: new GraphQLNonNull(GraphQLBoolean),},},})