As of version 6.1.8 it seems like all schema commands assume the schema directory to be descendent from the root directory. I'm working in a monorepo-type codebase where the schema files are reused across domains. The config file looks something like this, with the schemas being imported from a parent directory:
import schemas from '../etc/schemas.ts';
export default {
schema: {
types: schemas,
}
};
I haven't looked into the details of how the command but the expected behavior is to respect the schema import as dev and other commands do.
As of version
6.1.8it seems like allschemacommands assume the schema directory to be descendent from the root directory. I'm working in a monorepo-type codebase where the schema files are reused across domains. The config file looks something like this, with the schemas being imported from a parent directory:I haven't looked into the details of how the command but the expected behavior is to respect the schema import as
devand other commands do.