0.0.2 • Published 4 years ago

@miniql/lazy v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

@miniql/lazy

A MiniQL query resolver lazily loaded data. This MiniQL plugin is designed to be used to build other plugins.

Any problems? Please log an issue on this repo.

Love this? Please star the repo and follow the developer on Twitter.

Using it

Install the modules in your Node.js project:

npm install --save miniql
npm install --save @miniql/lazy

Import the modules (JavaScript):

const { miniql } = require("miniql");
const { createQueryResolver } = require("@miniql/lazy");

Import the modules (TypeScript):

import { miniql } from "miniql";
import { createQueryResolver } from "@miniql/lazy";

Then create a configuration for your data:

    //
    // Configures the query resolver.
    //
    const queryConfig = {
        species: {
            primaryKey: "name",
            nested: {
                homeworld: {
                    parentKey: "homeworld",
                    from: "planet",
                },
            },
        },
        planet: {
            primaryKey: "name",
            nested: {
                species: {
                    foreignKey: "homeworld",
                },
            },
        },
    };

Now create a lazy data loader:

    const dataLoader = {

        //
        // Loads a single entity.
        //
        loadSingleEntity = async (entityTypeName: string, primaryKey: string, entityId: string): Promise<any> => {
            const entity = // Load a single of type 'entityTypeName' with a value in its field 'primaryKey' of value 'entityId'.
            return entity;
        },

        //
        // Load the set of entities.
        //
        async loadEntities(entityTypeName: string): Promise<any[]> {
            const entities = // Load all entities of type 'entityTypeName'.
            return entities;
        },
    };

Finally create a lazy query resolver with your configuration and data loader:

    // 
    // Creates a query resolver for lazy loadeed data.
    //
    const queryResolver = await createQueryResolver(queryConfig, dataLoader);

Now you can make queries against the lazily loaded dataset, for example:

    const query = {
        get: {
            species: { // Query for "species" entity.
            
                // No arguments gets all entities.

                resolve: {
                    homeworld: { // Resolves the homeworld of each species as a nested lookup.
                    },
                }
            },
        },
    };

    // Invokes MiniQL.
    const result = await miniql(query, queryResolver, {});  

    // Displays the query result.
    console.log(JSON.stringify(result, null, 4));

Please see MiniQL for more information on how to make queries.

Don't forget to star the repo and follow the developer on Twitter.