1.0.18 • Published 8 years ago

sails-mongo-tree v1.0.18

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

sails-mongo-tree

A tree structure for sails-mongo (Waterline) using the materialized path pattern

Installations

Install using npm install sails-mongo-tree --save

Integration

In order to transform your model into a tree like structure call tree.seed() and pass on your schema as argument

//api/models/User.js

var tree = require('sails-mongo-tree')

module.exports = tree.seed({
  attributes: {
    firstName: { type: 'string' },
    lastName: { type: 'string' }
  }
})

It adds a parent field and a __path field to your model. parent is a reference to the immediate parent and __path is used to implement the materialized path algorithm.

Attribute Methods available

Get Parent

model.getParent(function(err, parent){})

Get immediate children

model.getChildren(function(err, children){})

Get all children and grand children

model.getChildren(true, function(err, allChildren){})

Get all ancestors including parent

model.getAncestors(function(err, ancestors){})

Get Level

model.level()

1.0.18

8 years ago

1.0.17

8 years ago

1.0.16

8 years ago

1.0.15

8 years ago

1.0.14

8 years ago

1.0.13

8 years ago

1.0.12

8 years ago

1.0.11

8 years ago

1.0.10

8 years ago

1.0.9

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.0.2

9 years ago

0.0.1

9 years ago