@nrwl/nest:resource
Nest Resource Options Schema.
Usage
nx generate resource ...By default, Nx will search for resource in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/nest:resource ...Show what will be generated without writing to disk:
nx g resource ... --dry-runOptions
crud
trueWhen true, CRUD entry points are generated.
directory
Directory where the generated files are placed.
flat
falseFlag to indicate if a directory is created.
language
js, tsNest class language.
name
The name of the resource.
project
The Nest project to target.
skipFormat
falseSkip formatting files.
skipImport
falseFlag to skip the module import.
type
restrest, graphql-code-first, graphql-schema-first, microservice, wsThe transport layer.
unitTestRunner
jestjest, noneTest runner to use for unit tests.