npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

graphql-query-builder-v2

v2.0.5

Published

a simple but powerful graphQL query builder

Downloads

1,219

Readme

graphql-query-builder-v2

Since graphql-query-builder seems to no longer be actively maintained, I have forked it. Nothing much has changed except the ability to use null and undefined values in the arguments. You are also allowed to not execute .find

API is unchanged.

Working examples in v2

let query =
    new QueryBuilder(
        "functionName",
        {
            name: null
        }
    )

Output

functionName( name: null )

With .find

let query =
    new QueryBuilder(
        "functionName",
        {
            name: null
        }
    )
query.find([
    "_id",
    "name"
])

Output

functionName( name: null ) {
    _id,
    name
}

With enums

let query =
    new QueryBuilder(
        "functionName",
        {
            status: QueryBuilder.Enum('draft')
        }
    )

Output

functionName( status: draft )

Combining to create graphql-upload example

As I have recently started using graphql-upload, I am sharing how this package can also be used to create a valid FormData query.

const QueryBuilder = require("graphql-query-builder-v2");

// The wrapping "mutation"
let mutation = new QueryBuilder("mutation");
mutation.filter({
	$image: QueryBuilder.Enum("Upload")
});

// Nested data within actual_query
const nested = {
	data1: "stuff",
	image: QueryBuilder.Enum("$image")
};
// The actual query we want to run
let actual_query = new QueryBuilder("imageUpload");
actual_query.filter({
	_id: 1,
	display_name: "example",
	nested
});
// putting the actual query into the wrapping mutation
mutation.find([
	actual_query
]);

let form_data = new FormData();

const operations = {
    query: mutation_query.toString(),
    variables: {
        image: null
    }
};
form_data.append("operations", JSON.stringify(operations));

const map = {
    "0": ["variables.image"]
};
form_data.append("map", JSON.stringify(map));

form_data.append("0", image_file); // image_file is variable that is holding your File/Blob

Output

mutation output

mutation($image: Upload) {
	imageUpload(
		_id: 1, 
		display_name: "example", 
		nested: {
			data1: "stuff", 
			image: $image
		})
}

Install

Use this instead of the install below.

npm install graphql-query-builder-v2

graphql-query-builder

a simple but powerful graphQL query builder

info:

npm version License pull requests welcome GitHub stars

tests:

build Coverage Status

quality:

Code Climate bitHound Overall Score Issue Count Known Vulnerabilities

If this was helpful, ★ it on github

tested on NodeJS and Webpack

Demo / Sandbox :thumbsup:

Install

npm install graphql-query-builder

Api

const Query = require('graphql-query-builder');

constructor

query/mutator you wish to use, and an alias or filter arguments.

| Argument (one to two) | Description |--- |--- | String | the name of the query function | * String / Object | (optional) This can be an alias or filter values

let profilePicture = new Query("profilePicture",{size : 50});

setAlias

set an alias for this result.

| Argument | Description |--- |--- | String | The alias for this result

profilePicture.setAlias("MyPic");

filter

the parameters to run the query against.

| Argument | Description |--- |--- | Object | An object mapping attribute to values

profilePicture.filter({ height : 200, width : 200});

find

outlines the properties you wish to be returned from the query.

| Argument (one to many) | Description |--- |--- | String or Object | representing each attribute you want Returned | ... | same as above

    profilePicture.find( { link : "uri"}, "width", "height");

toString

return to the formatted query string

  // A (ES6)
  `${profilePicture}`;
  // B
  profilePicture+'';
  // C
  profilePicture.toString();

run samples

node example/simple.js

Example

var Query = require('graphql-query-builder');

// example of nesting Querys
let profilePicture = new Query("profilePicture",{size : 50});
    profilePicture.find( "uri", "width", "height");
    
let user = new Query("user",{id : 123});
    user.find(["id", {"nickname":"name"}, "isViewerFriend",  {"image":profilePicture}])
    
    console.log(user)
    /*
     user( id:123 ) {
    id,
    nickname : name,
    isViewerFriend,
    
    image : profilePicture( size:50 ) {
        uri,
        width,
        height
    }
  }
    */
    
// And another example

let MessageRequest = { type:"chat", message:"yoyo",
                   user:{
                            name:"bob",
                            screen:{
                                    height:1080,
                                    width:1920
                                    }
                    },
                    friends:[
                             {id:1,name:"ann"},
                             {id:2,name:"tom"}
                             ]
                    };
                    
let MessageQuery = new Query("Message","myPost");
    MessageQuery.filter(MessageRequest);
    MessageQuery.find({ messageId : "id"}, {postedTime : "createTime" });
    
    console.log(MessageQuery);
    
    /*
    myPost:Message( type:"chat",
                    message:"yoyo",
                    user:{name:"bob",screen:{height:1080,width:1920}},
                    friends:[{id:1,name:"ann"},{id:2,name:"tom"}])
        {
            messageId : id,
            postedTime : createTime
        }
    */

    // Simple nesting
    
    let user = new Query("user");
        user.find([{"profilePicture":["uri", "width", "height"]}])
    
    /* 
    user {
      profilePicture {
        uri,
        width,
        height
       }
     }
    */ 
    
    // Simple nesting with rename
    
    let user = new Query("user");
        user.find([{"image":{"profilePicture":["uri", "width", "height"]}}])
    
    /* 
    user {
      image : profilePicture {
        uri,
        width,
        height
       }
     }
    */