Link Search Menu Expand Document

List Field

Table of contents

  1. Example Usage
  2. Allowed Attributes
    1. Default
    2. Required
    3. Custom Name

Array field for Firestore

Example Usage

const {Model, Field} = require("fireo");

class User extends Model{
    subjects = Field.List();
}

const u = User.init();
u.subjects = ['English', 'Math']

Allowed Attributes

The following attributes supported by Boolean Field.

  1. default
  2. required
  3. name
  • Default

    Default value for field. This is base attribute that is available in all fields. Read More

  • Required

    Set true if value is required for the field. This is base attribute that is available in all fields. Read More

  • Custom Name

    Set different name in Firestore instead of field name. This is base attribute that is available in all fields. Read More


Copyright © 2019 FireO All rights reserved. Powered by OctaByte