Hello, I have 3 questions regarding prisma2 and it’s GraphQL capabilities:
1. Will I be able to interact with my database using GraphQL?
2. Will Prisma2 autogenerate GraphQL schema for my datamodel?
3. Will I be able to build my GraphQL APIs similarly to what I did using prisma-binding (using info object/selection set)? E.g.:
const query = {
games: async (_parent, args, context, info) => {
return context.db.query.games(args, info);
}
}