File tree Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change
1
+ coverage /
2
+ media /
3
+ src /
4
+ .github /
5
+ .devcontainer /
6
+ .editorconfig /
7
+ .eslintrc.js /
8
+ .prettierrc /
9
+ .jest.config.json
10
+ tests /
11
+ tsconfig.json
12
+ * .md
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const info = debug('gotql:info')
11
11
* Performs a mutation on the specified GraphQL endpoint
12
12
*
13
13
* @param {string } endPoint GraphQL Endpoint
14
- * @param {queryType } query The JSON getQL query object
14
+ * @param {queryType } query The JSON gotQL query object
15
15
* @param {userOpts } [options] User options
16
16
* @public
17
17
* @return {Promise<any> } A response object containing all the data
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const info = debug('gotql:info')
10
10
* Performs a query on the specified GraphQL endpoint
11
11
*
12
12
* @param {string } endPoint GraphQL Endpoint
13
- * @param {queryType } query The JSON getQL query object
13
+ * @param {queryType } query The JSON gotQL query object
14
14
* @param {userOpts } [options] User options
15
15
* @public
16
16
* @return {Promise<any> } A response object containing all the data
Original file line number Diff line number Diff line change 1
1
import { LiteralObject } from './Literal'
2
2
/**
3
- * @typedef {object } queryType An getQL JSON query type
3
+ * @typedef {object } queryType An gotQL JSON query type
4
4
* @prop {string } [name] Query name (it is needed when there are multiple queries)
5
5
* @prop {operation } operation Operation object
6
6
* @prop {Object.<string, { type: string, value: string }> } [variables] Query variables
You can’t perform that action at this time.
0 commit comments