1.0.5 • Published 12 months ago

@growsari/models v1.0.5

Weekly downloads
49
License
ISC
Repository
-
Last release
12 months ago

Models

Models class. Extends from @growsari/dbal.

Usage

Extend class

const {createModelClass} = require('@growsari/models')

module.exports = {
  Model: createModelClass('Model', {properties: {fieldName: { ... }}}
  )
}

Create record

const {Model} = require('../models')
await Model.create(...)
model = new Model(...)
await model.save()

Find and Update record

model = await Model.find('some-uuid-value-for-id')
model.fieldName = 'newFieldValue'
await model.save()
model = await Model.findBy('some-uuid-value-for-id')
model.fieldName = 'newFieldValue'
await model.save()

Note that findBy field name must use a field configured as unique in order to work, i.e.

{properties: { uniqueField: { unique: true }}}

Delete record

model = await Model.find('some-uuid-value-for-id')
await model.destroy()

Errors

CodeMessage
MODELS-001Record not found for 'Entity' model
MODELS-002Validation error
MODELS-003Not supported
MODELS-004Model not validated
MODELS-005Schema not set
1.0.5

12 months ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.5.26

2 years ago

0.5.25

2 years ago

0.5.23

2 years ago

0.5.24

2 years ago

0.5.21

2 years ago

0.5.22

2 years ago

0.5.20

2 years ago

0.5.18

2 years ago

0.5.19

2 years ago

0.5.17

3 years ago

0.5.16

3 years ago

0.5.10

3 years ago

0.5.11

3 years ago

0.5.14

3 years ago

0.5.15

3 years ago

0.5.12

3 years ago

0.5.13

3 years ago

0.5.8

3 years ago

0.5.7

3 years ago

0.5.9

3 years ago

0.5.4

3 years ago

0.5.3

3 years ago

0.5.6

3 years ago

0.5.5

3 years ago

0.5.2

3 years ago

0.5.1

4 years ago

0.4.18

4 years ago

0.5.0

4 years ago

0.4.17

4 years ago

0.4.16

4 years ago

0.4.15

5 years ago

0.4.10

5 years ago

0.4.13

5 years ago

0.4.14

5 years ago

0.4.11

5 years ago

0.4.12

5 years ago

0.4.9

5 years ago

0.4.8

5 years ago

0.4.7

5 years ago

0.4.6

5 years ago

0.4.5

5 years ago

0.4.4

5 years ago

0.4.3

5 years ago

0.4.2

5 years ago

0.4.1

5 years ago

0.4.0

5 years ago

0.3.2

5 years ago

0.3.3

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.22

5 years ago

0.0.21

5 years ago

0.0.20

5 years ago

0.0.18

5 years ago

0.0.19

5 years ago

0.0.17

5 years ago

0.0.16

5 years ago

0.0.15

5 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.11

5 years ago

0.0.12

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago