Showing 42 of 66 total issues
Function perform
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
async perform() {
const modelName = utils.getModelName(this._model);
const schema = Interface.Schemas.schemas[utils.getModelName(this._model)];
const recordId = this._record._id;
Function getFieldSchema
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
getFieldSchema(path, fieldInfo) {
const schema = { field: path, type: this._getTypeFromMongoose(fieldInfo) };
const ref = this._detectReference(fieldInfo);
if (ref) { schema.reference = ref; }
Function requestUnflattener
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
static requestUnflattener(request, response, next) {
if (request.originalUrl.includes('.csv?')) {
return next();
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function _flattenField
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
_flattenField(schema, parentFieldName, newFields = [], level = undefined) {
if (schema.type?.fields && (level === undefined || level > -1)) {
schema.type.fields.forEach((subField) => {
const newFieldName = parentFieldName ? `${parentFieldName}${FLATTEN_SEPARATOR}${subField.field}` : schema.field;
this._flattenField(
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function perform
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
async perform() {
const params = await getScopedParams(this._params, this._model, this._user);
const timezone = -parseInt(moment().tz(params.timezone).format('Z'), 10);
const timezoneOffset = timezone * 60 * 60 * 1000;
const queryBuilder = new QueryBuilder(this._model, params, this._opts);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function getFieldSchema
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
getFieldSchema(path, fieldInfo) {
const schema = { field: path, type: this._getTypeFromMongoose(fieldInfo) };
const ref = this._detectReference(fieldInfo);
if (ref) { schema.reference = ref; }
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function getFieldNamesRequested
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
async getFieldNamesRequested() {
if (!this._params.fields || !this._params.fields[this._model.modelName]) { return null; }
// NOTICE: Populate the necessary associations for filters
const associations = this._params.filters
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this function. Open
return this._getTypeFromNative(type.type);
Avoid too many return
statements within this function. Open
return [this._getTypeFromNative(fieldInfo.options.type[0])];
Avoid too many return
statements within this function. Open
return [this._objectType(fieldInfo.options.type[0], (key) =>
this._getTypeFromNative(fieldInfo.options.type[0][key]))];
Avoid too many return
statements within this function. Open
return this._schemaType(type);
Avoid too many return
statements within this function. Open
return this._objectType(fieldInfo.schema.obj, (fieldName) =>
this._getTypeFromNative(fieldInfo.schema.obj[fieldName]));
Avoid too many return
statements within this function. Open
return 'Json';
Avoid too many return
statements within this function. Open
return 'String';
Avoid too many return
statements within this function. Open
return 'Json';
Avoid too many return
statements within this function. Open
return null;
Avoid too many return
statements within this function. Open
return fieldInfo.instance
|| (fieldInfo.options && this._getTypeFromNative(fieldInfo.options.type))
|| null;
Avoid too many return
statements within this function. Open
return this._objectType(type, (key) => this._getTypeFromNative(type[key]));
Avoid too many return
statements within this function. Open
return 'String';
Avoid too many return
statements within this function. Open
return 'Enum';