Coder Social home page Coder Social logo

ramen-adonis-datamodel's Introduction

ramen-adonis-datamodel

ramen-adonis-datamodel is part of ramen package for Adonis.JS framework. Currently, it offers wrapper for Google Firestore operations, including query, adding, and updating data. There will be plans to support another data model in the future, if it is needed.

Installation

You can install the package using command

adonis install ramen-adonis-datamodel

The installer will copy the following files into your project directory.

  • config/ramenfirestore.js

These files should be located inside your project directory after a successfull installation.

How to Use

Detailed instructions for how to integrate the package to your project can be found in instruction.md file which will be automatically opened after a successfull installation.

Features

By extending your model with Ramen/FirestoreModel class, you can access following methods from your model in order to access firestore operations

setCollectionDb(collectionName, documentId = null)

this method will set the firestore instance to point to correspoding collectionName collection. documentId is an optional parameter, but will be mandatory if you want to access specific document id, and also when you want to chain this method multiple times. This method is mandatory when you want to access the other method in this package.

where(columnName, operator, value)

THis method will be adding where clause to the firestore instance, in order you want to query some data from firestore server. columnName is the column name which exist in your document property. operator is a comparison operator which is supported by firestore. value is the comparable data. Please note in order to use this function, you will need to chain it with setCollectionDb method

async find()

This method will be returning the specific document data from a specific collection.

async get()

This method will execute the query which is already you specified using where() method. This also can be used to get all collection data, by chaining it with setCollectionDb(collectionName).

Request Parsing

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.