![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
graphql-query-builder
Advanced tools
a simple but powerful graphQL query builder
info:
tests:
quality:
npm install graphql-query-builder
const Query = require('graphql-query-builder');
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});
set an alias for this result.
Argument | Description |
---|---|
String | The alias for this result |
profilePicture.setAlias("MyPic");
the parameters to run the query against.
Argument | Description |
---|---|
Object | An object mapping attribute to values |
profilePicture.filter({ height : 200, width : 200});
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");
return to the formatted query string
// A (ES6)
`${profilePicture}`;
// B
profilePicture+'';
// C
profilePicture.toString();
node example/simple.js
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
}
*/
FAQs
a simple but powerful graphQL query builder
The npm package graphql-query-builder receives a total of 346 weekly downloads. As such, graphql-query-builder popularity was classified as not popular.
We found that graphql-query-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.