UNPKG

@graphql-tools/prisma-loader

Version:

A set of utils for faster development of GraphQL tools

11 lines (10 loc) 276 B
export class StageNotFound extends Error { constructor(name) { if (name) { super(`Stage '${name}' could not be found in the local prisma.yml`); } else { super(`No stage provided and no default stage set`); } } }