fauna-helper
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

FaunaDB query helpers

This is a collection of helper methods for querying Fauna Database so we don't have to write FQL ourselves

Installation

npm install --save fauna-helper

or

yarn add fauna-helper

Create an instance of FaunaHelper

import {FaunaHelper} from 'fauna-helper';
const serverKey = <your faunaDB server key>;
const faunaHelper = new FaunaHelper(serverKey);

Use helper methods to interact with your collections

## For example, get documents from a given collection and specify how many documents to return (page size)
faunaHelper.getDocumentsFromCollection('myCollectioName', 10).then(results=>{
    // do something with results
});

For more info on how to use the library

See each method's definitions. The library is written in TypeScript so auto-completion in most IDEs should be able to help you.

Readme

Keywords

Package Sidebar

Install

npm i fauna-helper

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

26.7 kB

Total Files

8

Last publish

Collaborators

  • benchomsang