convert2graphql
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "convert2graphql", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -72,16 +72,22 @@ # Convert2GraphQL | ||
// Output Will Be | ||
// { | ||
// getChats (chatOption: { sortLatest: true limit: 1 }msgOption: { sortLatest: false limit: 5 } timestamp: "Sat Jan 20 2018 01:56:37 GMT+0530 (IST)" ) { | ||
// name | ||
// msgs{ | ||
// msg createdBy | ||
// } | ||
// } | ||
// getMsgs (msgOption: { sortLatest: true limit: 1 } chatSlug: "slug" ) { | ||
// msg | ||
// createdBy | ||
// } | ||
// } | ||
/** | ||
* | ||
* Following Output is Generated | ||
* | ||
* | ||
* { | ||
* getChats (chatOption: { sortLatest: true limit: 1 }msgOption: { sortLatest: false limit: 5 } timestamp: "Sat Jan 20 2018 01:56:37 GMT+0530 (IST)" ) { | ||
* name | ||
* msgs{ | ||
* msg createdBy | ||
* } | ||
* } | ||
* | ||
* getMsgs (msgOption: { sortLatest: true limit: 1 } chatSlug: "slug" ) { | ||
* msg | ||
* createdBy | ||
* } | ||
* } | ||
*/ | ||
``` |
4031
92