Skip to content

Commit bdad2d3

Browse files
authored
Feature/7 persistent query variables (#16)
* #7 Add variables param for persistent queries * #7 encode variables in the url * #7 add default env vars for e2e tests * #7 update Readme with variables example * #7 add persistent query variables example to Readme
1 parent ea5d4e4 commit bdad2d3

File tree

5 files changed

+27
-11
lines changed

5 files changed

+27
-11
lines changed

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,13 @@ aemHeadlessClient.persistQuery(queryString, 'wknd/persist-query-name')
6363
.then(data => console.log(data))
6464
.catch(e => console.error(e.toJSON()))
6565

66-
aemHeadlessClient.runPersistedQuery('wknd/persist-query-name')
66+
aemHeadlessClient.runPersistedQuery('wknd/persist-query-name', { variable1: 'variable1Value' })
6767
.then(data => console.log(data))
6868
.catch(e => console.error(e.toJSON()))
69+
70+
aemHeadlessClient.getQuery('wknd/persist-query-name-with-variables', { name: 'John Doe'})
71+
.then(data => console.log(data))
72+
.catch(e => console.error(e.toJSON()))
6973
```
7074
#### Within async/await:
7175
```javascript
@@ -112,7 +116,7 @@ If `auth` is not defined, Authorization header will not be set
112116
SDK contains helper function to get Auth token from credentials config file
113117

114118
```javascript
115-
const {getToken} = require('@adobe/aem-headless-client-js')
119+
const { getToken } = require('@adobe/aem-headless-client-js')
116120
(async () => {
117121
const {accessToken, type, expires} = await getToken('path/to/service-config.json')
118122
const sdkNode = new AEMHeadless('content/graphql/endpoint.gql', AEM_HOST_URI, accessToken)

api-reference.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ with GraphQL endpoint, GraphQL host and auth if needed
2525
* [.runQuery(query, [options])](#AEMHeadless+runQuery) ⇒ <code>Promise.&lt;any&gt;</code>
2626
* [.persistQuery(query, path, [options])](#AEMHeadless+persistQuery) ⇒ <code>Promise.&lt;any&gt;</code>
2727
* [.listPersistedQueries([options])](#AEMHeadless+listPersistedQueries) ⇒ <code>Promise.&lt;any&gt;</code>
28-
* [.runPersistedQuery(path, [options])](#AEMHeadless+runPersistedQuery) ⇒ <code>Promise.&lt;any&gt;</code>
28+
* [.runPersistedQuery(path, [variables], [options])](#AEMHeadless+runPersistedQuery) ⇒ <code>Promise.&lt;any&gt;</code>
2929

3030
<a name="new_AEMHeadless_new"></a>
3131

@@ -83,7 +83,7 @@ Returns a Promise that resolves with a GET request JSON data.
8383

8484
<a name="AEMHeadless+runPersistedQuery"></a>
8585

86-
### aemHeadless.runPersistedQuery(path, [options]) ⇒ <code>Promise.&lt;any&gt;</code>
86+
### aemHeadless.runPersistedQuery(path, [variables], [options]) ⇒ <code>Promise.&lt;any&gt;</code>
8787
Returns a Promise that resolves with a GET request JSON data.
8888

8989
**Kind**: instance method of [<code>AEMHeadless</code>](#AEMHeadless)
@@ -92,5 +92,6 @@ Returns a Promise that resolves with a GET request JSON data.
9292
| Param | Type | Default | Description |
9393
| --- | --- | --- | --- |
9494
| path | <code>string</code> | | AEM path for persisted query, format: configuration_name/endpoint_name |
95+
| [variables] | <code>object</code> | <code>{}</code> | query variables |
9596
| [options] | <code>object</code> | <code>{}</code> | additional GET request options |
9697

e2e/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
## Requirements
44

55
To run the e2e test you'll need these env variables set:
6-
1. `AEM_HOST_URI`
7-
2. `AEM_GRAPHQL_ENDPOINT` (if different from default `content/graphql/endpoint.gql`)
8-
3. `AEM_TOKEN` (or `AEM_USER` and `AEM_PASS`)
6+
1. `AEM_HOST_URI` - default 'http://localhost:4502'
7+
2. `AEM_GRAPHQL_ENDPOINT` - default `content/graphql/global/endpoint.json`
8+
3. `AEM_TOKEN` (or `AEM_USER` and `AEM_PASS`) - default `AEM_USER=admin` and `AEM_PASS=admin`
99

1010
## Run
1111

e2e/e2e.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require('dotenv').config({ path: path.join(__dirname, '.env') })
1616

1717
const { AEMHeadless } = require('../src')
1818

19-
const { AEM_TOKEN, AEM_USER, AEM_PASS, AEM_HOST_URI, AEM_GRAPHQL_ENDPOINT } = process.env
19+
const { AEM_TOKEN, AEM_USER = 'admin', AEM_PASS = 'admin', AEM_HOST_URI = 'http://localhost:4502', AEM_GRAPHQL_ENDPOINT = 'content/graphql/global/endpoint.json' } = process.env
2020

2121
const queryString = `
2222
{

src/main.js

+14-3
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,23 @@ class AEMHeadless {
8181
* Returns a Promise that resolves with a GET request JSON data.
8282
*
8383
* @param {string} path - AEM path for persisted query, format: configuration_name/endpoint_name
84+
* @param {object} [variables={}] - query variables
8485
* @param {object} [options={}] - additional GET request options
8586
* @returns {Promise<any>} - the response body wrapped inside a Promise
8687
*/
87-
runPersistedQuery (path, options = {}) {
88-
const url = `${AEM_GRAPHQL_ACTIONS.execute}/${path}`
89-
return this.__handleRequest(url, '', { method: 'GET', ...options })
88+
89+
runPersistedQuery (path, variables = {}, options = {}) {
90+
const method = (options.method || 'GET').toUpperCase()
91+
let body = ''
92+
let variablesString = Object.keys(variables).map(key => `;${key}=${encodeURIComponent(variables[key])}`).join()
93+
94+
if (method === 'POST') {
95+
body = JSON.stringify({ variables })
96+
variablesString = ''
97+
}
98+
99+
const url = `${AEM_GRAPHQL_ACTIONS.execute}/${path}${variablesString}`
100+
return this.__handleRequest(url, body, { method, ...options })
90101
}
91102

92103
/**

0 commit comments

Comments
 (0)