All Projects → shiftx → faunadb-fql-lib

shiftx / faunadb-fql-lib

Licence: MIT License
No description or website provided.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to faunadb-fql-lib

next-fauna-auth
Implemented cookie-based user authentication in a Next.js, FaunaDB and GraphQL app
Stars: ✭ 29 (-65.06%)
Mutual labels:  fql, faunadb
fauna-gql-upload
A tool for managing your FaunaDB database using files. Create resources such as functions by simply creating a new file.
Stars: ✭ 45 (-45.78%)
Mutual labels:  fql, faunadb
use-fauna
React hooks for interacting with Fauna databases
Stars: ✭ 44 (-46.99%)
Mutual labels:  faunadb
faunadb-http-dart
A pure Dart implementation of a FaunaDB client and provides query classes that closely mimic FQL functions.
Stars: ✭ 28 (-66.27%)
Mutual labels:  faunadb
faugra
A micro "no-backend" backend framework 🤯 Quickly build powerful BaaS using only your graphql schemas
Stars: ✭ 44 (-46.99%)
Mutual labels:  faunadb
theodorusclarence.com
💠 Personal website and blog made using Next.js, TypeScript, Tailwind CSS, MDX Bundler, FaunaDB, and Preact.
Stars: ✭ 205 (+146.99%)
Mutual labels:  faunadb
netlify-faunadb-graphql-auth
Netlify functions example with faunadb, graphql, and authorization
Stars: ✭ 57 (-31.33%)
Mutual labels:  faunadb
fauna-workers
A template for building fast, globally distributed applications using Cloudflare Workers and Fauna, the data API for modern applications.
Stars: ✭ 35 (-57.83%)
Mutual labels:  faunadb
virtual-lolly
JAMstack demo site - prerendered with serverless API fallbacks
Stars: ✭ 110 (+32.53%)
Mutual labels:  faunadb
coderplex-org
Official Website for Coderplex Community. Built with Next.js and deployed on Vercel.
Stars: ✭ 32 (-61.45%)
Mutual labels:  faunadb
faunadb-csharp
C# driver for FaunaDB
Stars: ✭ 55 (-33.73%)
Mutual labels:  faunadb
facebook-nodejs
Nodejs module for Facebook api
Stars: ✭ 26 (-68.67%)
Mutual labels:  fql
faunadb-ruby
Ruby driver for FaunaDB
Stars: ✭ 37 (-55.42%)
Mutual labels:  faunadb
testimonial
Jamstack app using Gatsby, Netlify, and FaunaDB.
Stars: ✭ 23 (-72.29%)
Mutual labels:  faunadb
fauna-gatsby-comments
Roll your own comments with Gatsby and FaunaDB 🗞️
Stars: ✭ 29 (-65.06%)
Mutual labels:  faunadb
faunadb-importer
Importer tool to load data into FaunaDB
Stars: ✭ 33 (-60.24%)
Mutual labels:  faunadb
shopnote
shopnote is a JAMstack application that helps in creating notes with shopping items. This application is built to showcase the JAMstack concept using Fauna, Netlify Serverless Functions and GatsbyJS.
Stars: ✭ 15 (-81.93%)
Mutual labels:  faunadb
local-docker-db
A bunch o' Docker Compose files used to quickly spin up local databases.
Stars: ✭ 251 (+202.41%)
Mutual labels:  faunadb
auth-email
🔐 Lightweight authentication specifically designed for Next.js
Stars: ✭ 73 (-12.05%)
Mutual labels:  faunadb

faunadb-fql-lib

Npm Version License Test

Quickstart

Installation

yarn add faunadb-fql-lib or npm install faunadb-fql-lib

Usage

Merged with faunadb-js query

You can import query from faunadb-fql-lib and the functions will be merged with all of Faunas built-in functions. If there is ever a naming conflict in an updated version of faunadb-js then this will throw an error.

import { query as q } from "faunadb-fql-lib"

Or import each function as needed.

import { MapFQLib } from "faunadb-fql-lib"

List of all functions

Most functions in this library are built using pure FQL, and can be safly generated and used in Fauna. Exceptions are marked and will be made pure if possible by future releases of Fauna. Deprecated functions have been replaced by native support in Fauna.

Functions

FQLib functions - alternatives to built-in FQL functions

These are functions that extend and/or alternate the behaviour of existing FQL functions. All functions suffixed with FQLib already exists but behaves differently.

Functions

ArrayReverse

import { query as q } from "faunadb-fql-lib"

q.ArrayReverse([1, 2, 3]) // => [3,2,1]

CreateAt

import { query as q } from "faunadb-fql-lib"

q.CreateAt(q.Collection("Foos"), 150000000000000, {
    data: { foo: "bar" },
})

Debug

A debug/dev utility for aborting the query at any point and return a JSON object.

import { query as q } from "faunadb-fql-lib"

q.Debug({ foo: 'Bar' })

DeepMerge

Deep merges two objects. Provide depth level as third argument. Note: Currently Fauna does not support recursion without creating a user defined function so the function is not 100% pure FQL and will need a pre-set depth limit.

import { query as q } from "faunadb-fql-lib"

q.DeepMerge(
    { data: { a: { a1: 1 } } },
    { data: { a: { a2: 2 } } },
    3
) // => { data: { a: { a1: 1, a2: 2 } } }

DeleteAt

Helper around Insert. Will Insert a delete event at the given timestamp.

import { query as q } from "faunadb-fql-lib"

q.DeleteAt(q.Ref(q.Collection("Foos"), '1234'), 150000000000000)

EventExistsAt

Check if there exists an event at the exact given timestamp.

import { query as q } from "faunadb-fql-lib"

q.EventExistsAt(q.Ref(q.Collection("Foos"), '1234'), 150000000000000) // => truer

Find

Wrapper around Filter that returns the first match.

import { query as q } from "faunadb-fql-lib"

const array = [{ id: "1" }, { id: "2" }, { id: "3" }]

q.Find(
    array,
    q.Lambda(
        "item",
        q.Equals("3", q.Select(["id"], q.Var("item")))
    )
) // => { id: "3" }

FindIndex

Returns the index of the first item in an array that matches a Lambda expression.

import { query as q } from "faunadb-fql-lib"

const array = [{ id: "1" }, { id: "2" }, { id: "3" }]

q.FindIndex(
    array,
    q.Lambda(
        "item",
        q.Equals("3", q.Select(["id"], q.Var("item")))
    )
) // => 2

Flatten

Flatten an Array. (one level deep only)

import { query as q } from "faunadb-fql-lib"

q.Flatten([["a", "b"], ["c", "d"], "e"]) // => ["a", "b", "c", "d", "e"]

FlattenDoc

import { query as q } from "faunadb-fql-lib"

q.FlattenDoc({
    ref: q.Ref(q.Collection("Foos"), "1"),
    ts: 1234,
    data: {
        foo: 1,
        bar: 2
    }
}) /* => {
    ref: q.Ref(q.Collection("Foos"), "1"),
    ts: 1234,
    foo: 1,
    bar: 2
} */

GetAll

For indexes returning only one Ref as value GetAll is a shorthand for using map to Get all items.

import { query as q } from "faunadb-fql-lib"

// These two queries are the same.

q.GetAll(
    q.Paginate(
        q.Documents(q.Collection('Foos')),
        { size: 10 }
    )
)

q.Map(
    q.Paginate(
        q.Documents(q.Collection('Foos')),
        { size: 10 }
    ),
    q.Lambda('ref', q.Get(q.Var('ref')))
)

InsertAtIndex

Insert item in array at given index. -1 will add to the end of array.

import { query as q } from "faunadb-fql-lib"

q.InsertAtIndex(["a", "b", "c", "d"], 2, "foo") // => ["a", "b", "foo", "c", "d"]
q.InsertAtIndex(["a", "b", "c", "d"], 0, "foo") // => ["foo", "a", "b", "c", "d"]
q.InsertAtIndex(["a", "b", "c", "d"], -1, "foo") // => ["a", "b", "c", "d", "foo"]

MapSelect

Map and Select combined.

import { query as q } from "faunadb-fql-lib"

q.MapSelect([{ id: "1" }, { id: "2" }, { id: "3" }], ["id"]) // => ["1", "2", "3"]

ObjectKeys

import { query as q } from "faunadb-fql-lib"

q.ObjectKeys({ foo: "1", bar: "2" }) // => ["foo", "bar"]

PageToObject

This function takes the before, after and data properties on Page and creates an Object. Usful with other functions that don"t accept Pages. PageToObject is used by MapFQLib.

import { query as q } from "faunadb-fql-lib"

q.PageToObject(q.Paginate(...))

PaginateReverse

Paging a set in reverse is possible but a bit tricky. This pure FQL function takes away the pain. Use it like Paginate.

NOTE: Wrapping PaginateReverse in Map will fail. Use MapFQLib instead.

import { query as q } from "faunadb-fql-lib"

q.MapFQLib(
    q.PaginateReverse(setRef, opts),
    q.Lambda("ref", q.Get(q.Var("ref")))
)

SelectRef

Select and return the ref from an object.

import { query as q } from "faunadb-fql-lib"

q.SelectRef({
    ref: q.Ref(q.Collection("Foos"), "1234"),
    ts: 150000000000000,
    data: {...}
}) // => q.Ref(q.Collection("Foos"), "1234")

Slice

Slice an array by start and optional end index positions.

import { query as q } from "faunadb-fql-lib"

const array = [1, 2, 3, 4, 5, 6]

q.Slice(array, 1, 2) // => [2, 3]
q.Slice(array, 1) // => [2, 3, 4, 5, 6]

Slugify

Downcase string and replace whitespace and _ with -

import { query as q } from "faunadb-fql-lib"

q.Slugify("Foo Bar_FooBar") // => "foo-bar-foobar"

Sort

Sort the items of an array

import { query as q } from "faunadb-fql-lib"

q.Sort([8, 2, 4]) // => [2, 4, 8]
q.Sort(["foo", "bar"]) // => ["bar", "foo"]

StringSplit

Takes a string and an optional delimiter (defaults to .) and splits the string into an array.

import { query as q } from "faunadb-fql-lib"

q.StringSplit("foo.bar.fooBar") // => ["foo", "bar", "fooBar"]
q.StringSplit("foo bar fooBar", " ") // => ["foo", "bar", "fooBar"]
q.StringSplit("foo-bar-fooBar", "-") // => ["foo", "bar", "fooBar"]

RandomString

Generates a random string of a given length. Provide optional alphabet.

import { query as q } from "faunadb-fql-lib"

q.RandomString(10) // => "1RsBc2SmCc"
q.RandomString(5, "ABC") // => "BCCBC"

Switch

Creates a switch statement that checks a string and evaluates the matching expression in a matchers object. A third argument can be provided as default value if no match is found. Without default the transaction will abort.

NOT 100% PURE! The switchObject provided can't be dynamically generated in Fauna and needs to be provided on the client.

import { query as q } from "faunadb-fql-lib"

const switchObject = {
    foo: q.Add(1,2),
    bar: q.Concat(["Hi", "there"], " ")
}

q.Switch("foo", switchObject) // => 3
q.Switch("bar", switchObject) // => "Hi there"
q.Switch("missing", switchObject) // => ERR: transaction aborted, Key 'missing' not supported by Switch
q.Switch("missing", switchObject, q.UpperCase("fallback expr")) // => "FALLBACK EXPR"

ToJson

A simple wrapper around Format that takes any expression and returns it as a JSON string. Also great for returning errors in q.Abort().

import { query as q } from "faunadb-fql-lib"

q.ToJson({ foo: "1", bar: q.Add(1, 2) }) // => {"foo":"1","bar":3}

Trace

Debug function that will add a keyword to your position trace if the query fails. Usefull when debugging complex and deeply nested fql queries.

import { query as q } from "faunadb-fql-lib"

const array = [1, 2, 3, 4, 5, 6]

q.Trace('keyWord', q.Get(...))

UpdateAt (Experimental)

Experimental function that will allow you to update a document at a given point in time and merge the change with newer events. Please see test file for more information.

WithIndex

Takes an array and wraps each element in an array containing the original value and the index.

import { query as q } from "faunadb-fql-lib"

q.WithIndex(["a", "b"]) // => [["a", 0], ["b", 1]]

q.Map(q.WithIndex(["foo", "bar"]), q.Lambda(["val", "i"], q.Var("i"))) // => [0, 1]

FQLib functions

ContainsFQLib

Alternative to Contains that supports both array and string as path.

import { query as q } from "faunadb-fql-lib"

q.ContainsFQLib([foo, 1], { foo: ["a", "b"] }) // => true
q.ContainsFQLib("foo.1", { foo: ["a", "b"] }) // => true

MapFQLib

A wrapper around Map that also works on "Page-like" objects. There is currently no way to construct a Page object in FQL so passing { data: [] } to Map will not work.

import { MapFQLib } from "faunadb-fql-lib"

q.MapFQLib({ data: ["foo", "bar"]}, q.Lambda("item", q.Var("item"))) // => ["foo", "bar"]

SelectFQLib

Alternative to Select that supports both array and string as path and does not evaluate the default value unless there is no match.

import { query as q } from "faunadb-fql-lib"

q.SelectFQLib([foo, 1], { foo: ["a", "b"] }) // => "b"
q.SelectFQLib("foo.1", { foo: ["a", "b"] }) // => "b"
q.SelectFQLib("bar.2", { foo: ["a", "b"] }, "default") // => "default"

/* The current Select in FQL always evaluates the default statement and will
create a document even if the value was found */
q.Select(["bar", 0], { foo: ["a", "b"] }, q.Create(q.Collection('Foos'))) // => "a" + document created in Foos

/* SelectFQLLib will only evaluate if there is no match, so mutations are safe */
q.SelectFQLib(["bar", 0], { foo: ["a", "b"] }, q.Create(q.Collection('Foos'))) // => "a" no ducument created
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].