@operato/graphql
Advanced tools
Comparing version 0.4.3 to 1.0.0-alpha.1
@@ -6,2 +6,11 @@ # Change Log | ||
## [1.0.0-alpha.1](https://github.com/hatiolab/operato/compare/v0.4.3...v1.0.0-alpha.1) (2022-03-09) | ||
### :rocket: New Features | ||
* 1.0-alpha ([42f87cf](https://github.com/hatiolab/operato/commit/42f87cf6a3cef0381db91ecb1179e63c64c01370)) | ||
### [0.4.3](https://github.com/hatiolab/operato/compare/v0.4.2...v0.4.3) (2022-03-06) | ||
@@ -8,0 +17,0 @@ |
export declare const configFields: string[]; | ||
export declare function buildArgs(argsObj: any): string; | ||
export declare function buildArgs(argsObj: { | ||
[name: string]: any; | ||
}): string; | ||
export declare function buildVariables(varsObj: any): string; | ||
@@ -4,0 +6,0 @@ export interface IJsonToGraphQLOptions { |
@@ -6,3 +6,3 @@ { | ||
"author": "heartyoh@hatiolab.com", | ||
"version": "0.4.3", | ||
"version": "1.0.0-alpha.1", | ||
"main": "dist/src/index.js", | ||
@@ -101,3 +101,3 @@ "module": "dist/src/index.js", | ||
}, | ||
"gitHead": "fe9c1b9d5017b264c4aa9cec68babe75c6e8ab2c" | ||
"gitHead": "c1e9c1dc58feb942d69a2f8392358accb2860184" | ||
} |
@@ -42,3 +42,3 @@ /* inspired by https://github.com/dupski/json-to-graphql-query */ | ||
export function buildArgs(argsObj: any): string { | ||
export function buildArgs(argsObj: { [name: string]: any }): string { | ||
const args = [] | ||
@@ -45,0 +45,0 @@ for (const argName in argsObj) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
122750
852