@@ -16,7 +16,7 @@ governing permissions and limitations under the License.
16
16
## AEMHeadless
17
17
This class provides methods to call AEM GraphQL APIs.
18
18
Before calling any method initialize the instance
19
- with GraphQL endpoint, GraphQL host and auth if needed
19
+ with GraphQL endpoint, GraphQL serviceURL and auth if needed
20
20
21
21
** Kind** : global class
22
22
@@ -31,16 +31,34 @@ with GraphQL endpoint, GraphQL host and auth if needed
31
31
32
32
### new AEMHeadless(config)
33
33
Constructor.
34
+
34
35
If param is a string, it's treated as AEM server URL, default GraphQL endpoint is used.
35
36
For granular params, use config object
36
37
37
-
38
- | Param | Type | Description |
39
- | --- | --- | --- |
40
- | config | <code >object</code > \| <code >string</code > | Configuration object, or AEM server URL string |
41
- | [ config.serviceURL] | <code >string</code > | AEM server URL |
42
- | [ config.endpoint] | <code >string</code > | GraphQL endpoint |
43
- | [ config.auth] | <code >string</code > \| <code >Array</code > | Bearer token string or [ user,pass] pair array |
38
+ <table >
39
+ <thead >
40
+ <tr>
41
+ <th>Param</th><th>Type</th><th>Description</th>
42
+ </tr>
43
+ </thead >
44
+ <tbody >
45
+ <tr >
46
+ <td>config</td><td><code>string</code> | <code>object</code></td><td><p>Configuration object, or AEM server URL string</p>
47
+ </td >
48
+ </tr><tr>
49
+ <td>[config.serviceURL]</td><td><code>string</code></td><td><p>AEM server URL</p>
50
+ </td >
51
+ </tr><tr>
52
+ <td>[config.endpoint]</td><td><code>string</code></td><td><p>GraphQL endpoint</p>
53
+ </td >
54
+ </tr><tr>
55
+ <td>[config.auth]</td><td><code>string</code> | <code>Array</code></td><td><p>Bearer token string or [user,pass] pair array</p>
56
+ </td >
57
+ </tr><tr>
58
+ <td>[config.fetch]</td><td><code>object</code></td><td><p>Fetch instance - required for NodeJS only, eg node-fetch/cross-fetch</p>
59
+ </td >
60
+ </tr> </tbody>
61
+ </table >
44
62
45
63
<a name =" AEMHeadless+runQuery " ></a >
46
64
@@ -49,11 +67,21 @@ Returns a Promise that resolves with a POST request JSON data.
49
67
50
68
** Kind** : instance method of [ <code >AEMHeadless</code >] ( #AEMHeadless )
51
69
** Returns** : <code >Promise.< ; any> ; </code > - - the response body wrapped inside a Promise
52
-
53
- | Param | Type | Default | Description |
54
- | --- | --- | --- | --- |
55
- | query | <code >string</code > | | the query string |
56
- | [ options] | <code >object</code > | <code >{}</code > | additional POST request options |
70
+ <table >
71
+ <thead >
72
+ <tr>
73
+ <th>Param</th><th>Type</th><th>Default</th><th>Description</th>
74
+ </tr>
75
+ </thead >
76
+ <tbody >
77
+ <tr >
78
+ <td>query</td><td><code>string</code></td><td></td><td><p>the query string</p>
79
+ </td >
80
+ </tr><tr>
81
+ <td>[options]</td><td><code>object</code></td><td><code>{}</code></td><td><p>additional POST request options</p>
82
+ </td >
83
+ </tr> </tbody>
84
+ </table >
57
85
58
86
<a name =" AEMHeadless+persistQuery " ></a >
59
87
@@ -62,12 +90,24 @@ Returns a Promise that resolves with a PUT request JSON data.
62
90
63
91
** Kind** : instance method of [ <code >AEMHeadless</code >] ( #AEMHeadless )
64
92
** Returns** : <code >Promise.< ; any> ; </code > - - the response body wrapped inside a Promise
65
-
66
- | Param | Type | Default | Description |
67
- | --- | --- | --- | --- |
68
- | query | <code >string</code > | | the query string |
69
- | path | <code >string</code > | | AEM path to save query, format: configuration_name/endpoint_name |
70
- | [ options] | <code >object</code > | <code >{}</code > | additional PUT request options |
93
+ <table >
94
+ <thead >
95
+ <tr>
96
+ <th>Param</th><th>Type</th><th>Default</th><th>Description</th>
97
+ </tr>
98
+ </thead >
99
+ <tbody >
100
+ <tr >
101
+ <td>query</td><td><code>string</code></td><td></td><td><p>the query string</p>
102
+ </td >
103
+ </tr><tr>
104
+ <td>path</td><td><code>string</code></td><td></td><td><p>AEM path to save query, format: configuration_name/endpoint_name</p>
105
+ </td >
106
+ </tr><tr>
107
+ <td>[options]</td><td><code>object</code></td><td><code>{}</code></td><td><p>additional PUT request options</p>
108
+ </td >
109
+ </tr> </tbody>
110
+ </table >
71
111
72
112
<a name =" AEMHeadless+listPersistedQueries " ></a >
73
113
@@ -76,10 +116,18 @@ Returns a Promise that resolves with a GET request JSON data.
76
116
77
117
** Kind** : instance method of [ <code >AEMHeadless</code >] ( #AEMHeadless )
78
118
** Returns** : <code >Promise.< ; any> ; </code > - - the response body wrapped inside a Promise
79
-
80
- | Param | Type | Default | Description |
81
- | --- | --- | --- | --- |
82
- | [ options] | <code >object</code > | <code >{}</code > | additional GET request options |
119
+ <table >
120
+ <thead >
121
+ <tr>
122
+ <th>Param</th><th>Type</th><th>Default</th><th>Description</th>
123
+ </tr>
124
+ </thead >
125
+ <tbody >
126
+ <tr >
127
+ <td>[options]</td><td><code>object</code></td><td><code>{}</code></td><td><p>additional GET request options</p>
128
+ </td >
129
+ </tr> </tbody>
130
+ </table >
83
131
84
132
<a name =" AEMHeadless+runPersistedQuery " ></a >
85
133
@@ -88,10 +136,22 @@ Returns a Promise that resolves with a GET request JSON data.
88
136
89
137
** Kind** : instance method of [ <code >AEMHeadless</code >] ( #AEMHeadless )
90
138
** Returns** : <code >Promise.< ; any> ; </code > - - the response body wrapped inside a Promise
91
-
92
- | Param | Type | Default | Description |
93
- | --- | --- | --- | --- |
94
- | path | <code >string</code > | | AEM path for persisted query, format: configuration_name/endpoint_name |
95
- | [ variables] | <code >object</code > | <code >{}</code > | query variables |
96
- | [ options] | <code >object</code > | <code >{}</code > | additional GET request options |
139
+ <table >
140
+ <thead >
141
+ <tr>
142
+ <th>Param</th><th>Type</th><th>Default</th><th>Description</th>
143
+ </tr>
144
+ </thead >
145
+ <tbody >
146
+ <tr >
147
+ <td>path</td><td><code>string</code></td><td></td><td><p>AEM path for persisted query, format: configuration_name/endpoint_name</p>
148
+ </td >
149
+ </tr><tr>
150
+ <td>[variables]</td><td><code>object</code></td><td><code>{}</code></td><td><p>query variables</p>
151
+ </td >
152
+ </tr><tr>
153
+ <td>[options]</td><td><code>object</code></td><td><code>{}</code></td><td><p>additional GET request options</p>
154
+ </td >
155
+ </tr> </tbody>
156
+ </table >
97
157
0 commit comments