Unable to find any GraphQL type definitions for the following pointers: src/**/*.graphql

The file your shared is your schema (as generated by your server), but it seems that you haven’t created any queries or mutations on top of it. This would be a reason why the codegen is not working properly. I suggest thay you create a new file with a simple query, such as: get-users.query.graphql query … Read more