You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple CLI tool to discover and write new model.json and model.js files by using loopback's datasource.discoverSchema API
Usage
./node_modules/.bin/loopback-discover-models -h
Usage:
loopback-discover-models [OPTIONS] [ARGS]
Options:
--serverPath [PATH]Path to server.js (relative to CWD). (Default is /server/server.js)
--modelConfigPath [PATH]Path to model-config.json (relative to CWD). (Default is /server/model-config.json)
--modelDir [PATH] Path to models folder (relative to CWD). (Default is /common/models)
--dataSource [STRING]Name of the data source from data sources.json (required). (Default is db)
--allNewModels [BOOLEAN]Discover and create all models not in modelDir. (Default is false)
--modelName STRING Name of a single model/table/collection to create.
--owner STRING Name of owner/schema/database for the models.
--relations [BOOLEAN]Include relations. (Default is false)
--allOwners [BOOLEAN]Include All Owners. (Default is false)
--views [BOOLEAN] Include views. (Default is false)
--skip STRING Comma seperate model names to skip when discovering new models.
-h, --help Display help and usage details
Generate Models for all tables in the database that don't already exist as models.