It could be that since resolvers and an already constructed schema object are provided, the schema augmentation process is having some issues constructing the ordering enums (although I'm not sure why exactly).
makeAugmentedSchema wraps makeExecutableSchema from graphql-tools so you shouldn't need the call to makeExecutableSchema. Could you try:
We intended makeAugmentedSchema to work with typedefs and augmentSchema to work with an already constructed GraphQLSchema object, which is a bit more difficult for the schema augmentation bit. Maybe @michaeldgraham can chime in with some more insight.
(Also, since I believe your resolvers are essentially just binding the neo4jgraphql function to each Query field, I don't think those are necessary either).
William, Thanks for the swift response and code suggestion, Unfortunately I now get a "TypeError: Must provide Source. Received: [object]" error which lists all my typedefs.
Looks like we don't yet support passing an array of type definitions to makeAugmentedSchema (which is supported by makeExecutableSchema in graphql-tools). I've created an issue to track fixing that properly, but in the meantime, a workaround could be to construct a single string from your array of type definition strings:
However, there is a related quirk with orderBy on nested fields. Is that supported with this version. I cant see the orderBy option in graphiql for my nested fields.