adoptai-mcp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (174) hide show
  1. package/README.md +70 -0
  2. package/bin/adoptai-mcp.js +2 -0
  3. package/dist/apps/canva.js +1 -0
  4. package/dist/apps/figma.js +1 -0
  5. package/dist/apps/github.js +2 -0
  6. package/dist/apps/notion.js +1 -0
  7. package/dist/apps/registry.js +20 -0
  8. package/dist/apps/salesforce.js +1 -0
  9. package/dist/cli/add.js +532 -0
  10. package/dist/cli/index.js +39 -0
  11. package/dist/cli/list.js +19 -0
  12. package/dist/cli/remove.js +37 -0
  13. package/dist/cli/serve.js +27 -0
  14. package/dist/cli/status.js +24 -0
  15. package/dist/config/clients.js +118 -0
  16. package/dist/config/credentials.js +34 -0
  17. package/dist/core/auth-manager.js +237 -0
  18. package/dist/core/config-writer.js +161 -0
  19. package/dist/core/doctor.js +199 -0
  20. package/dist/core/package.json +3 -0
  21. package/dist/core/server-base.js +81 -0
  22. package/dist/integrations/canva/.env +3 -0
  23. package/dist/integrations/canva/auth.js +287 -0
  24. package/dist/integrations/canva/env.js +9 -0
  25. package/dist/integrations/canva/index.js +12 -0
  26. package/dist/integrations/canva/package.json +31 -0
  27. package/dist/integrations/canva/publish-to-adoptai.js +365 -0
  28. package/dist/integrations/canva/setup.js +90 -0
  29. package/dist/integrations/canva/tools.js +1315 -0
  30. package/dist/integrations/canva/tools.original.js +1315 -0
  31. package/dist/integrations/figma/auth.js +48 -0
  32. package/dist/integrations/figma/index.js +11 -0
  33. package/dist/integrations/figma/package.json +27 -0
  34. package/dist/integrations/figma/publish-to-adoptai.js +384 -0
  35. package/dist/integrations/figma/setup.js +90 -0
  36. package/dist/integrations/figma/tools.js +1137 -0
  37. package/dist/integrations/github/auth.js +53 -0
  38. package/dist/integrations/github/index.js +11 -0
  39. package/dist/integrations/github/package.json +28 -0
  40. package/dist/integrations/github/publish-to-adoptai.js +240 -0
  41. package/dist/integrations/github/setup.js +103 -0
  42. package/dist/integrations/github/tools.js +78 -0
  43. package/dist/integrations/github-actions/auth.js +53 -0
  44. package/dist/integrations/github-actions/index.js +11 -0
  45. package/dist/integrations/github-actions/package.json +27 -0
  46. package/dist/integrations/github-actions/setup.js +103 -0
  47. package/dist/integrations/github-actions/tools.js +5642 -0
  48. package/dist/integrations/github-activity/auth.js +53 -0
  49. package/dist/integrations/github-activity/index.js +11 -0
  50. package/dist/integrations/github-activity/package.json +27 -0
  51. package/dist/integrations/github-activity/setup.js +103 -0
  52. package/dist/integrations/github-activity/tools.js +925 -0
  53. package/dist/integrations/github-apps/auth.js +53 -0
  54. package/dist/integrations/github-apps/index.js +11 -0
  55. package/dist/integrations/github-apps/package.json +27 -0
  56. package/dist/integrations/github-apps/setup.js +103 -0
  57. package/dist/integrations/github-apps/tools.js +791 -0
  58. package/dist/integrations/github-billing/auth.js +53 -0
  59. package/dist/integrations/github-billing/index.js +11 -0
  60. package/dist/integrations/github-billing/package.json +27 -0
  61. package/dist/integrations/github-billing/setup.js +103 -0
  62. package/dist/integrations/github-billing/tools.js +438 -0
  63. package/dist/integrations/github-checks/auth.js +53 -0
  64. package/dist/integrations/github-checks/index.js +11 -0
  65. package/dist/integrations/github-checks/package.json +27 -0
  66. package/dist/integrations/github-checks/setup.js +103 -0
  67. package/dist/integrations/github-checks/tools.js +607 -0
  68. package/dist/integrations/github-code-scanning/auth.js +53 -0
  69. package/dist/integrations/github-code-scanning/index.js +11 -0
  70. package/dist/integrations/github-code-scanning/package.json +27 -0
  71. package/dist/integrations/github-code-scanning/setup.js +103 -0
  72. package/dist/integrations/github-code-scanning/tools.js +987 -0
  73. package/dist/integrations/github-dependabot/auth.js +53 -0
  74. package/dist/integrations/github-dependabot/index.js +11 -0
  75. package/dist/integrations/github-dependabot/package.json +27 -0
  76. package/dist/integrations/github-dependabot/setup.js +103 -0
  77. package/dist/integrations/github-dependabot/tools.js +915 -0
  78. package/dist/integrations/github-gists/auth.js +53 -0
  79. package/dist/integrations/github-gists/index.js +11 -0
  80. package/dist/integrations/github-gists/package.json +27 -0
  81. package/dist/integrations/github-gists/setup.js +103 -0
  82. package/dist/integrations/github-gists/tools.js +545 -0
  83. package/dist/integrations/github-git/auth.js +53 -0
  84. package/dist/integrations/github-git/index.js +11 -0
  85. package/dist/integrations/github-git/package.json +27 -0
  86. package/dist/integrations/github-git/setup.js +103 -0
  87. package/dist/integrations/github-git/tools.js +513 -0
  88. package/dist/integrations/github-issues/auth.js +53 -0
  89. package/dist/integrations/github-issues/index.js +11 -0
  90. package/dist/integrations/github-issues/package.json +27 -0
  91. package/dist/integrations/github-issues/setup.js +103 -0
  92. package/dist/integrations/github-issues/tools.js +2232 -0
  93. package/dist/integrations/github-orgs/auth.js +53 -0
  94. package/dist/integrations/github-orgs/index.js +11 -0
  95. package/dist/integrations/github-orgs/package.json +27 -0
  96. package/dist/integrations/github-orgs/setup.js +103 -0
  97. package/dist/integrations/github-orgs/tools.js +3512 -0
  98. package/dist/integrations/github-packages/auth.js +53 -0
  99. package/dist/integrations/github-packages/index.js +11 -0
  100. package/dist/integrations/github-packages/package.json +27 -0
  101. package/dist/integrations/github-packages/setup.js +103 -0
  102. package/dist/integrations/github-packages/tools.js +1088 -0
  103. package/dist/integrations/github-pulls/auth.js +53 -0
  104. package/dist/integrations/github-pulls/index.js +11 -0
  105. package/dist/integrations/github-pulls/package.json +27 -0
  106. package/dist/integrations/github-pulls/setup.js +103 -0
  107. package/dist/integrations/github-pulls/tools.js +1252 -0
  108. package/dist/integrations/github-reactions/auth.js +53 -0
  109. package/dist/integrations/github-reactions/index.js +11 -0
  110. package/dist/integrations/github-reactions/package.json +27 -0
  111. package/dist/integrations/github-reactions/setup.js +103 -0
  112. package/dist/integrations/github-reactions/tools.js +706 -0
  113. package/dist/integrations/github-repos/auth.js +53 -0
  114. package/dist/integrations/github-repos/index.js +11 -0
  115. package/dist/integrations/github-repos/package.json +27 -0
  116. package/dist/integrations/github-repos/setup.js +103 -0
  117. package/dist/integrations/github-repos/tools.js +7286 -0
  118. package/dist/integrations/github-search/auth.js +53 -0
  119. package/dist/integrations/github-search/index.js +11 -0
  120. package/dist/integrations/github-search/package.json +27 -0
  121. package/dist/integrations/github-search/setup.js +103 -0
  122. package/dist/integrations/github-search/tools.js +370 -0
  123. package/dist/integrations/github-teams/auth.js +53 -0
  124. package/dist/integrations/github-teams/index.js +11 -0
  125. package/dist/integrations/github-teams/package.json +27 -0
  126. package/dist/integrations/github-teams/setup.js +103 -0
  127. package/dist/integrations/github-teams/tools.js +633 -0
  128. package/dist/integrations/github-users/auth.js +53 -0
  129. package/dist/integrations/github-users/index.js +11 -0
  130. package/dist/integrations/github-users/package.json +27 -0
  131. package/dist/integrations/github-users/setup.js +103 -0
  132. package/dist/integrations/github-users/tools.js +1118 -0
  133. package/dist/integrations/notion/api.js +108 -0
  134. package/dist/integrations/notion/auth.js +59 -0
  135. package/dist/integrations/notion/endpoints.json +630 -0
  136. package/dist/integrations/notion/index.js +11 -0
  137. package/dist/integrations/notion/package.json +33 -0
  138. package/dist/integrations/notion/publish-to-adoptai.js +271 -0
  139. package/dist/integrations/notion/scripts/generate-endpoints.mjs +306 -0
  140. package/dist/integrations/notion/setup.js +89 -0
  141. package/dist/integrations/notion/tools.js +586 -0
  142. package/dist/integrations/notion/tools.original.js +568 -0
  143. package/dist/integrations/salesforce/.env +8 -0
  144. package/dist/integrations/salesforce/.env.example +15 -0
  145. package/dist/integrations/salesforce/auth.js +311 -0
  146. package/dist/integrations/salesforce/endpoints.json +1359 -0
  147. package/dist/integrations/salesforce/env.js +9 -0
  148. package/dist/integrations/salesforce/index.js +12 -0
  149. package/dist/integrations/salesforce/package.json +42 -0
  150. package/dist/integrations/salesforce/publish-smart-specs.js +890 -0
  151. package/dist/integrations/salesforce/publish-to-adoptai.js +386 -0
  152. package/dist/integrations/salesforce/scripts/extract-postman.mjs +222 -0
  153. package/dist/integrations/salesforce/setup.js +112 -0
  154. package/dist/integrations/salesforce/tools.js +4544 -0
  155. package/dist/integrations/salesforce/tools.original.js +4487 -0
  156. package/dist/server/mcp-server.js +50 -0
  157. package/dist/server/tool-loader.js +47 -0
  158. package/dist/specs/figma-api.json +13621 -0
  159. package/dist/specs/split/salesforce-auth.json +3931 -0
  160. package/dist/specs/split/salesforce-bulk-v1.json +1489 -0
  161. package/dist/specs/split/salesforce-bulk-v2.json +1951 -0
  162. package/dist/specs/split/salesforce-composite.json +1246 -0
  163. package/dist/specs/split/salesforce-connect.json +11639 -0
  164. package/dist/specs/split/salesforce-einstein-prediction-service.json +576 -0
  165. package/dist/specs/split/salesforce-event-platform.json +2682 -0
  166. package/dist/specs/split/salesforce-graphql.json +1754 -0
  167. package/dist/specs/split/salesforce-industries.json +4115 -0
  168. package/dist/specs/split/salesforce-metadata.json +555 -0
  169. package/dist/specs/split/salesforce-rest.json +4798 -0
  170. package/dist/specs/split/salesforce-soap.json +210 -0
  171. package/dist/specs/split/salesforce-subscription-management.json +1299 -0
  172. package/dist/specs/split/salesforce-tooling.json +2026 -0
  173. package/dist/specs/split/salesforce-ui.json +7426 -0
  174. package/package.json +47 -0
@@ -0,0 +1,1754 @@
1
+ {
2
+ "info": {
3
+ "_postman_id": "67cb9baa-e0da-4986-957e-88d8734647e2",
4
+ "name": "Salesforce Platform APIs - graphql",
5
+ "description": "The Salesforce Platform APIs collection contains 250+ requests and example responses for the following APIs:\n\n<table><tbody><tr><td><div>Auth<br>Bulk (v1 &amp; v2)<br>Composite<br>Connect<br>CPQ<br>Einstein Prediction Service<br>Event Platform</div><div contenteditable=\"false\"><div><div><div></div></div></div><div></div></div></td><td><div>GraphQL<br>Loyalty Management<br>Metadata<br>REST<br>Subscription Management<br>Tooling<br>UI</div><div contenteditable=\"false\"><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n**⚠️ Disclaimer:** this collection is not covered by Salesforce support and SLAs.\n\n## Get Started\n\nClick the button below and follow the instructions from the following sections: \n[<img src=\"https://run.pstmn.io/button.svg\" alt=\"Run In Postman\">](https://god.gw.postman.com/run-collection/12721794-67cb9baa-e0da-4986-957e-88d8734647e2?action=collection%2Ffork&source=rip_markdown&collection-url=entityId%3D12721794-67cb9baa-e0da-4986-957e-88d8734647e2%26entityType%3Dcollection%26workspaceId%3D34382471-0c97-40e5-a206-f947271665c4)\n\n### New Salesforce Users\n\nIf you are new to Salesforce, start by obtaining a free [Developer Edition Org](https://developer.salesforce.com/signup) then, follow the rest of the instructions from this documentation.\n\nYou can also watch our [Beginner's Mind YouTube series](https://www.youtube.com/playlist?list=PLgIMQe2PKPSKJ33M6CX-VLvgax7Xptcmz) for a tour of the Salesforce Platform (the last episode focuses on APIs).\n\n### New Postman Users\n\n<table><tbody><tr><td><div><p>If you are new to Postman, complete this Trailhead project to setup the collection: <a rel=\"noreferrer noopener nofollow\" href=\"https://trailhead.salesforce.com/content/learn/projects/quick-start-connect-postman-to-salesforce\" target=\"_blank\" url=\"https://trailhead.salesforce.com/content/learn/projects/quick-start-connect-postman-to-salesforce\">Quick Start: Connect Postman to Salesforce</a>.<br></p><figure editor=\"[object Object]\"><div contenteditable=\"false\"><div><img src=\"https://res.cloudinary.com/hy4kyit2a/f_auto,fl_lossy,q_70/learn/projects/quick-start-connect-postman-to-salesforce/d281185a04fbccaf4f1d37e51a3b0049_badge.png\" alt=\"\"><div><div></div><div><div></div></div><div></div><div><div></div></div><div></div><div></div><div></div><div></div></div></div></div></figure></div><div contenteditable=\"false\"><div><div><div></div></div></div><div></div></div></td><td><div><p>If you want to learn more about Postman in general, you can also complete this optional Trailhead badge: <a rel=\"noreferrer noopener nofollow\" href=\"https://trailhead.salesforce.com/content/learn/modules/postman-api-client\" target=\"_blank\" url=\"https://trailhead.salesforce.com/content/learn/modules/postman-api-client\">Postman API Client</a>.<br></p><figure editor=\"[object Object]\"><div contenteditable=\"false\"><div><img src=\"https://res.cloudinary.com/hy4kyit2a/f_auto,fl_lossy,q_70/learn/modules/postman-api-client/c4f5ce5df16040d22df5f1cfb77af5a6_badge.png\" alt=\"\"><div><div></div><div><div></div></div><div></div><div><div></div></div><div></div><div></div><div></div><div></div></div></div></div></figure></div><div contenteditable=\"false\"><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n### Regular Postman Users\n\nIf you are already familiar with Postman, here are the minimal getting started steps:\n\n1. If using Postman Web UI, follow these [steps to set up CORS](https://github.com/forcedotcom/postman-salesforce-apis/blob/master/install-with-web.md#enable-cors-in-salesforce) in your Salesforce Org. This is not required when working with the Postman Desktop app.\n \n2. Assign the following value to the `clientId` collection variable (this is a temporary step due to a Postman bug):\n\n```\n{{vault:salesforce-consumer-key}}\n```\n \n3. Assign a value to the `url` collection variable based on your Salesforce Org type:\n \n | URL | Org Type |\n | --- | --- |\n | `https://test.salesforce.com` | Sandboxes or Scratch orgs. |\n | `https://login.salesforce.com` | Production, Trailhead Playground and Developer Edition orgs. |\n | Custom My Domain base URL | Org with a custom domain. |\n \n4. Click **Get New Access Token** from the collection's **Authorization** tab.\n \n5. When prompted to do so, log in to your Salesforce org and allow access to \"Salesforce APIs Collection for Postman\".\n \n6. Copy the value of the `instance_url` field from the token details view.\n \n7. Click **Use Token**.\n \n8. Save the value that you copied in the `_endpoint` variable.\n \n9. Click **Save** and you're good to go!\n \n\n## Resources\n\nCheck out [the documentation](https://github.com/forcedotcom/postman-salesforce-apis) for videos and extra information on how to install, update and contribute to the collection.\n\nWe also have an [demo video](https://www.youtube.com/watch?v=W-IwW6RM4F0) on how to setup the collection.\n\n<img src=\"https://i3.ytimg.com/vi/W-IwW6RM4F0/maxresdefault.jpg\" width=\"80%\">\n\nReport issues and ask questions [here](https://github.com/forcedotcom/postman-salesforce-apis/issues).\n\n## Variables Reference\n\nThe collection relies on the following variables:\n\n| Variable | Description |\n| --- | --- |\n| `_endpoint` | Your Salesforce Org's instance URL. |\n| `url` | The URL used for logging in. Either: <br>\\- `https://test.salesforce.com` for sandboxes or Scratch orgs <br>\\- `https://login.salesforce.com` for production, Trailhead Playground and Developer Edition orgs <br>\\- your custom My Domain base URL. |\n| `version` | The Salesforce API version (e.g.: 50.0). |\n| `username` | Your username. |\n| `password` | Your password. |\n| `secretToken` | Your personal [security token](https://help.salesforce.com/articleView?id=user_security_token.htm). |\n| `clientId` | Connected App client Id. |\n| `clientSecret` | Connected App client secret. |\n| `redirectUrl` | Connected App redirect URL for OAuth 2.0. |\n| `initAccessToken` | Initial access token for dynamic Connected App registration. |\n| `site` | Community suffix when connecting with an Experience Cloud user. |\n\nOnly a few of these variables are mandatory. The authentication requests will automatically register and set extra \"private\" variables identified with a `_` prefix (e.g.: `_accessToken`, `_orgId`, `_userId`...).",
6
+ "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
7
+ "_exporter_id": "32907289",
8
+ "_collection_link": "https://go.postman.co/collection/12721794-67cb9baa-e0da-4986-957e-88d8734647e2?source=collection_link"
9
+ },
10
+ "auth": {
11
+ "type": "oauth2",
12
+ "oauth2": [
13
+ {
14
+ "key": "grant_type",
15
+ "value": "implicit",
16
+ "type": "string"
17
+ },
18
+ {
19
+ "key": "scope",
20
+ "value": "api",
21
+ "type": "string"
22
+ },
23
+ {
24
+ "key": "addTokenTo",
25
+ "value": "header",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "key": "client_authentication",
30
+ "value": "body",
31
+ "type": "string"
32
+ },
33
+ {
34
+ "key": "password",
35
+ "value": "{{password}}",
36
+ "type": "string"
37
+ },
38
+ {
39
+ "key": "username",
40
+ "value": "{{username}}",
41
+ "type": "string"
42
+ },
43
+ {
44
+ "key": "challengeAlgorithm",
45
+ "value": "S256",
46
+ "type": "string"
47
+ },
48
+ {
49
+ "key": "clientSecret",
50
+ "value": "{{clientSecret}}",
51
+ "type": "string"
52
+ },
53
+ {
54
+ "key": "clientId",
55
+ "value": "{{clientId}}",
56
+ "type": "string"
57
+ },
58
+ {
59
+ "key": "accessTokenUrl",
60
+ "value": "{{url}}{{site}}/services/oauth2/token",
61
+ "type": "string"
62
+ },
63
+ {
64
+ "key": "authUrl",
65
+ "value": "{{url}}{{site}}/services/oauth2/authorize",
66
+ "type": "string"
67
+ },
68
+ {
69
+ "key": "tokenName",
70
+ "value": "access_token",
71
+ "type": "string"
72
+ },
73
+ {
74
+ "key": "useBrowser",
75
+ "value": true,
76
+ "type": "boolean"
77
+ }
78
+ ]
79
+ },
80
+ "variable": [
81
+ {
82
+ "key": "url",
83
+ "value": "https://login.salesforce.com"
84
+ },
85
+ {
86
+ "key": "version",
87
+ "value": "64.0"
88
+ },
89
+ {
90
+ "key": "username",
91
+ "value": ""
92
+ },
93
+ {
94
+ "key": "password",
95
+ "value": ""
96
+ },
97
+ {
98
+ "key": "secretToken",
99
+ "value": ""
100
+ },
101
+ {
102
+ "key": "clientId",
103
+ "value": "{{vault:salesforce-consumer-key}}"
104
+ },
105
+ {
106
+ "key": "clientSecret",
107
+ "value": ""
108
+ },
109
+ {
110
+ "key": "redirectUrl",
111
+ "value": ""
112
+ },
113
+ {
114
+ "key": "initAccessToken",
115
+ "value": ""
116
+ },
117
+ {
118
+ "key": "site",
119
+ "value": ""
120
+ },
121
+ {
122
+ "key": "_accessToken",
123
+ "value": ""
124
+ },
125
+ {
126
+ "key": "_endpoint",
127
+ "value": ""
128
+ },
129
+ {
130
+ "key": "_userId",
131
+ "value": ""
132
+ },
133
+ {
134
+ "key": "_appId",
135
+ "value": ""
136
+ },
137
+ {
138
+ "key": "_consumerId",
139
+ "value": ""
140
+ },
141
+ {
142
+ "key": "_tokenId",
143
+ "value": ""
144
+ },
145
+ {
146
+ "key": "_orgId",
147
+ "value": ""
148
+ },
149
+ {
150
+ "key": "_jobId",
151
+ "value": ""
152
+ },
153
+ {
154
+ "key": "webstoreId",
155
+ "value": ""
156
+ },
157
+ {
158
+ "key": "_deviceCode",
159
+ "value": ""
160
+ }
161
+ ],
162
+ "item": [
163
+ {
164
+ "name": "Accounts",
165
+ "request": {
166
+ "method": "POST",
167
+ "header": [
168
+ {
169
+ "key": "X-Chatter-Entity-Encoding",
170
+ "value": "false",
171
+ "type": "text"
172
+ }
173
+ ],
174
+ "body": {
175
+ "mode": "graphql",
176
+ "graphql": {
177
+ "query": "query accounts {\n uiapi {\n query {\n Account {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n }\n }\n }\n}",
178
+ "variables": ""
179
+ }
180
+ },
181
+ "url": {
182
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
183
+ "host": [
184
+ "{{_endpoint}}"
185
+ ],
186
+ "path": [
187
+ "services",
188
+ "data",
189
+ "v{{version}}",
190
+ "graphql"
191
+ ]
192
+ }
193
+ },
194
+ "response": [
195
+ {
196
+ "name": "Accounts",
197
+ "originalRequest": {
198
+ "method": "POST",
199
+ "header": [
200
+ {
201
+ "key": "X-Chatter-Entity-Encoding",
202
+ "value": "false"
203
+ }
204
+ ],
205
+ "body": {
206
+ "mode": "graphql",
207
+ "graphql": {
208
+ "query": "query accounts {\n uiapi {\n query {\n Account {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n }\n }\n }\n}",
209
+ "variables": ""
210
+ }
211
+ },
212
+ "url": {
213
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
214
+ "host": [
215
+ "{{_endpoint}}"
216
+ ],
217
+ "path": [
218
+ "services",
219
+ "data",
220
+ "v{{version}}",
221
+ "graphql"
222
+ ]
223
+ }
224
+ },
225
+ "status": "OK",
226
+ "code": 200,
227
+ "_postman_previewlanguage": "json",
228
+ "header": [
229
+ {
230
+ "key": "Date",
231
+ "value": "Fri, 06 Oct 2023 09:03:56 GMT"
232
+ },
233
+ {
234
+ "key": "Strict-Transport-Security",
235
+ "value": "max-age=63072000; includeSubDomains"
236
+ },
237
+ {
238
+ "key": "X-Content-Type-Options",
239
+ "value": "nosniff"
240
+ },
241
+ {
242
+ "key": "X-Robots-Tag",
243
+ "value": "none"
244
+ },
245
+ {
246
+ "key": "Cache-Control",
247
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
248
+ },
249
+ {
250
+ "key": "Content-Type",
251
+ "value": "application/json;charset=UTF-8"
252
+ },
253
+ {
254
+ "key": "Vary",
255
+ "value": "Accept-Encoding"
256
+ },
257
+ {
258
+ "key": "Content-Encoding",
259
+ "value": "gzip"
260
+ },
261
+ {
262
+ "key": "Transfer-Encoding",
263
+ "value": "chunked"
264
+ }
265
+ ],
266
+ "cookie": [],
267
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Account\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"0014H00002x6HUhQAM\",\n \"Name\": {\n \"value\": \"ACME Inc.\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"0014H00002LbR7QQAV\",\n \"Name\": {\n \"value\": \"ABC Computing\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00158000006QBOqAAO\",\n \"Name\": {\n \"value\": \"GenePoint\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00158000006QBOoAAO\",\n \"Name\": {\n \"value\": \"United Oil & Gas, Belgium\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00158000006QBOpAAO\",\n \"Name\": {\n \"value\": \"United Oil & Gas, Singapore\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00158000006QBOgAAO\",\n \"Name\": {\n \"value\": \"Edge Communications\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00158000006QBOhAAO\",\n \"Name\": {\n \"value\": \"Burlington Textiles Corp of America\"\n }\n }\n }\n ]\n }\n }\n }\n },\n \"errors\": []\n}"
268
+ }
269
+ ]
270
+ },
271
+ {
272
+ "name": "Account by Id",
273
+ "request": {
274
+ "method": "POST",
275
+ "header": [
276
+ {
277
+ "key": "X-Chatter-Entity-Encoding",
278
+ "value": "false",
279
+ "type": "text"
280
+ }
281
+ ],
282
+ "body": {
283
+ "mode": "graphql",
284
+ "graphql": {
285
+ "query": "query accountById($id: ID) {\n uiapi {\n query {\n Account(where: { Id: { eq: $id } }) {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n }\n }\n }\n}\n",
286
+ "variables": "{\n \"id\": \"0014H00002LbR7QQAV\"\n}"
287
+ }
288
+ },
289
+ "url": {
290
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
291
+ "host": [
292
+ "{{_endpoint}}"
293
+ ],
294
+ "path": [
295
+ "services",
296
+ "data",
297
+ "v{{version}}",
298
+ "graphql"
299
+ ]
300
+ }
301
+ },
302
+ "response": [
303
+ {
304
+ "name": "Account by Id",
305
+ "originalRequest": {
306
+ "method": "POST",
307
+ "header": [
308
+ {
309
+ "key": "X-Chatter-Entity-Encoding",
310
+ "value": "false"
311
+ }
312
+ ],
313
+ "body": {
314
+ "mode": "graphql",
315
+ "graphql": {
316
+ "query": "query accountById($id: ID) {\n uiapi {\n query {\n Account(where: { Id: { eq: $id } }) {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n }\n }\n }\n}\n",
317
+ "variables": "{\n \"id\": \"0014H00002LbR7QQAV\"\n}"
318
+ }
319
+ },
320
+ "url": {
321
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
322
+ "host": [
323
+ "{{_endpoint}}"
324
+ ],
325
+ "path": [
326
+ "services",
327
+ "data",
328
+ "v{{version}}",
329
+ "graphql"
330
+ ]
331
+ }
332
+ },
333
+ "status": "OK",
334
+ "code": 200,
335
+ "_postman_previewlanguage": "json",
336
+ "header": [
337
+ {
338
+ "key": "Date",
339
+ "value": "Fri, 06 Oct 2023 09:04:46 GMT"
340
+ },
341
+ {
342
+ "key": "Strict-Transport-Security",
343
+ "value": "max-age=63072000; includeSubDomains"
344
+ },
345
+ {
346
+ "key": "X-Content-Type-Options",
347
+ "value": "nosniff"
348
+ },
349
+ {
350
+ "key": "X-Robots-Tag",
351
+ "value": "none"
352
+ },
353
+ {
354
+ "key": "Cache-Control",
355
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
356
+ },
357
+ {
358
+ "key": "Content-Type",
359
+ "value": "application/json;charset=UTF-8"
360
+ },
361
+ {
362
+ "key": "Vary",
363
+ "value": "Accept-Encoding"
364
+ },
365
+ {
366
+ "key": "Content-Encoding",
367
+ "value": "gzip"
368
+ },
369
+ {
370
+ "key": "Transfer-Encoding",
371
+ "value": "chunked"
372
+ }
373
+ ],
374
+ "cookie": [],
375
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Account\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"0014H00002LbR7QQAV\",\n \"Name\": {\n \"value\": \"ABC Computing\"\n }\n }\n }\n ]\n }\n }\n }\n },\n \"errors\": []\n}"
376
+ }
377
+ ]
378
+ },
379
+ {
380
+ "name": "Accounts with Filter",
381
+ "request": {
382
+ "method": "POST",
383
+ "header": [
384
+ {
385
+ "key": "X-Chatter-Entity-Encoding",
386
+ "value": "false",
387
+ "type": "text"
388
+ }
389
+ ],
390
+ "body": {
391
+ "mode": "graphql",
392
+ "graphql": {
393
+ "query": "query accountsWithFilter($where: Account_Filter = {Name: {like: \"s%\"}}) {\n uiapi {\n query {\n Account(where: $where) {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n }\n }\n }\n}",
394
+ "variables": "{\n \"where\": {\n \"Name\": {\n \"like\": \"%united%\"\n }\n }\n}"
395
+ }
396
+ },
397
+ "url": {
398
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
399
+ "host": [
400
+ "{{_endpoint}}"
401
+ ],
402
+ "path": [
403
+ "services",
404
+ "data",
405
+ "v{{version}}",
406
+ "graphql"
407
+ ]
408
+ }
409
+ },
410
+ "response": [
411
+ {
412
+ "name": "Accounts with Filter",
413
+ "originalRequest": {
414
+ "method": "POST",
415
+ "header": [
416
+ {
417
+ "key": "X-Chatter-Entity-Encoding",
418
+ "value": "false"
419
+ }
420
+ ],
421
+ "body": {
422
+ "mode": "graphql",
423
+ "graphql": {
424
+ "query": "query accountsWithFilter($where: Account_Filter = {Name: {like: \"s%\"}}) {\n uiapi {\n query {\n Account(where: $where) {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n }\n }\n }\n}",
425
+ "variables": "{\n \"where\": {\n \"Name\": {\n \"like\": \"%united%\"\n }\n }\n}"
426
+ }
427
+ },
428
+ "url": {
429
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
430
+ "host": [
431
+ "{{_endpoint}}"
432
+ ],
433
+ "path": [
434
+ "services",
435
+ "data",
436
+ "v{{version}}",
437
+ "graphql"
438
+ ]
439
+ }
440
+ },
441
+ "status": "OK",
442
+ "code": 200,
443
+ "_postman_previewlanguage": "json",
444
+ "header": [
445
+ {
446
+ "key": "Date",
447
+ "value": "Fri, 06 Oct 2023 09:05:06 GMT"
448
+ },
449
+ {
450
+ "key": "Strict-Transport-Security",
451
+ "value": "max-age=63072000; includeSubDomains"
452
+ },
453
+ {
454
+ "key": "X-Content-Type-Options",
455
+ "value": "nosniff"
456
+ },
457
+ {
458
+ "key": "X-Robots-Tag",
459
+ "value": "none"
460
+ },
461
+ {
462
+ "key": "Cache-Control",
463
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
464
+ },
465
+ {
466
+ "key": "Content-Type",
467
+ "value": "application/json;charset=UTF-8"
468
+ },
469
+ {
470
+ "key": "Vary",
471
+ "value": "Accept-Encoding"
472
+ },
473
+ {
474
+ "key": "Content-Encoding",
475
+ "value": "gzip"
476
+ },
477
+ {
478
+ "key": "Transfer-Encoding",
479
+ "value": "chunked"
480
+ }
481
+ ],
482
+ "cookie": [],
483
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Account\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"00158000006QBOoAAO\",\n \"Name\": {\n \"value\": \"United Oil & Gas, Belgium\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00158000006QBOlAAO\",\n \"Name\": {\n \"value\": \"United Oil & Gas Corp.\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00158000006QBOpAAO\",\n \"Name\": {\n \"value\": \"United Oil & Gas, Singapore\"\n }\n }\n }\n ]\n }\n }\n }\n },\n \"errors\": []\n}"
484
+ }
485
+ ]
486
+ },
487
+ {
488
+ "name": "Accounts with Cursors (Pagination)",
489
+ "request": {
490
+ "method": "POST",
491
+ "header": [
492
+ {
493
+ "key": "X-Chatter-Entity-Encoding",
494
+ "value": "false",
495
+ "type": "text"
496
+ }
497
+ ],
498
+ "body": {
499
+ "mode": "graphql",
500
+ "graphql": {
501
+ "query": "query accountsWithCursors($first: Int, $after: String) {\n uiapi {\n query {\n Account(first: $first, after: $after) {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n totalCount\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n }\n }\n }\n}",
502
+ "variables": "{\n \"first\": 3,\n \"after\": null\n}"
503
+ }
504
+ },
505
+ "url": {
506
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
507
+ "host": [
508
+ "{{_endpoint}}"
509
+ ],
510
+ "path": [
511
+ "services",
512
+ "data",
513
+ "v{{version}}",
514
+ "graphql"
515
+ ]
516
+ }
517
+ },
518
+ "response": [
519
+ {
520
+ "name": "Accounts with Cursors (Pagination)",
521
+ "originalRequest": {
522
+ "method": "POST",
523
+ "header": [
524
+ {
525
+ "key": "X-Chatter-Entity-Encoding",
526
+ "value": "false"
527
+ }
528
+ ],
529
+ "body": {
530
+ "mode": "graphql",
531
+ "graphql": {
532
+ "query": "query accountsWithCursors($first: Int, $after: String) {\n uiapi {\n query {\n Account(first: $first, after: $after) {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n totalCount\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n }\n }\n }\n}",
533
+ "variables": "{\n \"first\": 3,\n \"after\": null\n}"
534
+ }
535
+ },
536
+ "url": {
537
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
538
+ "host": [
539
+ "{{_endpoint}}"
540
+ ],
541
+ "path": [
542
+ "services",
543
+ "data",
544
+ "v{{version}}",
545
+ "graphql"
546
+ ]
547
+ }
548
+ },
549
+ "status": "OK",
550
+ "code": 200,
551
+ "_postman_previewlanguage": "json",
552
+ "header": [
553
+ {
554
+ "key": "Date",
555
+ "value": "Fri, 06 Oct 2023 09:05:20 GMT"
556
+ },
557
+ {
558
+ "key": "Strict-Transport-Security",
559
+ "value": "max-age=63072000; includeSubDomains"
560
+ },
561
+ {
562
+ "key": "X-Content-Type-Options",
563
+ "value": "nosniff"
564
+ },
565
+ {
566
+ "key": "X-Robots-Tag",
567
+ "value": "none"
568
+ },
569
+ {
570
+ "key": "Cache-Control",
571
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
572
+ },
573
+ {
574
+ "key": "Content-Type",
575
+ "value": "application/json;charset=UTF-8"
576
+ },
577
+ {
578
+ "key": "Vary",
579
+ "value": "Accept-Encoding"
580
+ },
581
+ {
582
+ "key": "Content-Encoding",
583
+ "value": "gzip"
584
+ },
585
+ {
586
+ "key": "Transfer-Encoding",
587
+ "value": "chunked"
588
+ }
589
+ ],
590
+ "cookie": [],
591
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Account\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"0014H00004CXfY8QAL\",\n \"Name\": {\n \"value\": \"An Account\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"0014H00002E6wi6QAB\",\n \"Name\": {\n \"value\": \"Sample Account\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"0014H00002x6HUhQAM\",\n \"Name\": {\n \"value\": \"ACME Inc.\"\n }\n }\n }\n ],\n \"totalCount\": 524,\n \"pageInfo\": {\n \"hasNextPage\": true,\n \"hasPreviousPage\": false,\n \"startCursor\": \"djE6MA==\",\n \"endCursor\": \"djE6Mg==\"\n }\n }\n }\n }\n },\n \"errors\": []\n}"
592
+ }
593
+ ]
594
+ },
595
+ {
596
+ "name": "Contacts",
597
+ "request": {
598
+ "method": "POST",
599
+ "header": [
600
+ {
601
+ "key": "X-Chatter-Entity-Encoding",
602
+ "value": "false",
603
+ "type": "text"
604
+ }
605
+ ],
606
+ "body": {
607
+ "mode": "graphql",
608
+ "graphql": {
609
+ "query": "query contacts {\n uiapi {\n query {\n Contact {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n }\n }\n }\n}",
610
+ "variables": ""
611
+ }
612
+ },
613
+ "url": {
614
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
615
+ "host": [
616
+ "{{_endpoint}}"
617
+ ],
618
+ "path": [
619
+ "services",
620
+ "data",
621
+ "v{{version}}",
622
+ "graphql"
623
+ ]
624
+ }
625
+ },
626
+ "response": [
627
+ {
628
+ "name": "Contacts",
629
+ "originalRequest": {
630
+ "method": "POST",
631
+ "header": [
632
+ {
633
+ "key": "X-Chatter-Entity-Encoding",
634
+ "value": "false"
635
+ }
636
+ ],
637
+ "body": {
638
+ "mode": "graphql",
639
+ "graphql": {
640
+ "query": "query contacts {\n uiapi {\n query {\n Contact {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n }\n }\n }\n}",
641
+ "variables": ""
642
+ }
643
+ },
644
+ "url": {
645
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
646
+ "host": [
647
+ "{{_endpoint}}"
648
+ ],
649
+ "path": [
650
+ "services",
651
+ "data",
652
+ "v{{version}}",
653
+ "graphql"
654
+ ]
655
+ }
656
+ },
657
+ "status": "OK",
658
+ "code": 200,
659
+ "_postman_previewlanguage": "json",
660
+ "header": [
661
+ {
662
+ "key": "Date",
663
+ "value": "Fri, 06 Oct 2023 09:06:52 GMT"
664
+ },
665
+ {
666
+ "key": "Strict-Transport-Security",
667
+ "value": "max-age=63072000; includeSubDomains"
668
+ },
669
+ {
670
+ "key": "X-Content-Type-Options",
671
+ "value": "nosniff"
672
+ },
673
+ {
674
+ "key": "X-Robots-Tag",
675
+ "value": "none"
676
+ },
677
+ {
678
+ "key": "Cache-Control",
679
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
680
+ },
681
+ {
682
+ "key": "Content-Type",
683
+ "value": "application/json;charset=UTF-8"
684
+ },
685
+ {
686
+ "key": "Vary",
687
+ "value": "Accept-Encoding"
688
+ },
689
+ {
690
+ "key": "Content-Encoding",
691
+ "value": "gzip"
692
+ },
693
+ {
694
+ "key": "Transfer-Encoding",
695
+ "value": "chunked"
696
+ }
697
+ ],
698
+ "cookie": [],
699
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Contact\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"0034H000029oY0FQAU\",\n \"Name\": {\n \"value\": \"Contact One\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"0034H000029oY0GQAU\",\n \"Name\": {\n \"value\": \"Contact Two\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"0034H000029oY0HQAU\",\n \"Name\": {\n \"value\": \"Contact Three\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"0034H000029oXu7QAE\",\n \"Name\": {\n \"value\": \"Sample Contact\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"0034H00002JsInQQAV\",\n \"Name\": {\n \"value\": \"John Doe\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006c0kdAAA\",\n \"Name\": {\n \"value\": \"John Dodge\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006c0keAAA\",\n \"Name\": {\n \"value\": \"Sarah Smith\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006c0kfAAA\",\n \"Name\": {\n \"value\": \"George Dapper\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006c0kgAAA\",\n \"Name\": {\n \"value\": \"Jack Dodge 2\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006c0msAAA\",\n \"Name\": {\n \"value\": \"Jessica Jones\"\n }\n }\n }\n ]\n }\n }\n }\n },\n \"errors\": []\n}"
700
+ }
701
+ ]
702
+ },
703
+ {
704
+ "name": "Contacts Ordered",
705
+ "request": {
706
+ "method": "POST",
707
+ "header": [
708
+ {
709
+ "key": "X-Chatter-Entity-Encoding",
710
+ "value": "false",
711
+ "type": "text"
712
+ }
713
+ ],
714
+ "body": {
715
+ "mode": "graphql",
716
+ "graphql": {
717
+ "query": "query contactsOrderBy {\n uiapi {\n query {\n Contact(orderBy: { Name: { order: ASC }}) {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n }\n }\n }\n}",
718
+ "variables": ""
719
+ }
720
+ },
721
+ "url": {
722
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
723
+ "host": [
724
+ "{{_endpoint}}"
725
+ ],
726
+ "path": [
727
+ "services",
728
+ "data",
729
+ "v{{version}}",
730
+ "graphql"
731
+ ]
732
+ }
733
+ },
734
+ "response": [
735
+ {
736
+ "name": "Contacts Ordered",
737
+ "originalRequest": {
738
+ "method": "POST",
739
+ "header": [
740
+ {
741
+ "key": "X-Chatter-Entity-Encoding",
742
+ "value": "false"
743
+ }
744
+ ],
745
+ "body": {
746
+ "mode": "graphql",
747
+ "graphql": {
748
+ "query": "query contactsOrderBy {\n uiapi {\n query {\n Contact(orderBy: { Name: { order: ASC }}) {\n edges {\n node {\n Id\n Name {\n value\n }\n }\n }\n }\n }\n }\n}",
749
+ "variables": ""
750
+ }
751
+ },
752
+ "url": {
753
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
754
+ "host": [
755
+ "{{_endpoint}}"
756
+ ],
757
+ "path": [
758
+ "services",
759
+ "data",
760
+ "v{{version}}",
761
+ "graphql"
762
+ ]
763
+ }
764
+ },
765
+ "status": "OK",
766
+ "code": 200,
767
+ "_postman_previewlanguage": "json",
768
+ "header": [
769
+ {
770
+ "key": "Date",
771
+ "value": "Fri, 06 Oct 2023 09:06:30 GMT"
772
+ },
773
+ {
774
+ "key": "Strict-Transport-Security",
775
+ "value": "max-age=63072000; includeSubDomains"
776
+ },
777
+ {
778
+ "key": "X-Content-Type-Options",
779
+ "value": "nosniff"
780
+ },
781
+ {
782
+ "key": "X-Robots-Tag",
783
+ "value": "none"
784
+ },
785
+ {
786
+ "key": "Cache-Control",
787
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
788
+ },
789
+ {
790
+ "key": "Content-Type",
791
+ "value": "application/json;charset=UTF-8"
792
+ },
793
+ {
794
+ "key": "Vary",
795
+ "value": "Accept-Encoding"
796
+ },
797
+ {
798
+ "key": "Content-Encoding",
799
+ "value": "gzip"
800
+ },
801
+ {
802
+ "key": "Transfer-Encoding",
803
+ "value": "chunked"
804
+ }
805
+ ],
806
+ "cookie": [],
807
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Contact\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"00358000006c0n7AAA\",\n \"Name\": {\n \"value\": \"Alice Black\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"0035800000iXli3AAC\",\n \"Name\": {\n \"value\": \"Amanda Smith\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006woxyAAA\",\n \"Name\": {\n \"value\": \"Andy Young\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006woy6AAA\",\n \"Name\": {\n \"value\": \"Arthur Song\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006woy7AAA\",\n \"Name\": {\n \"value\": \"Ashley James\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006woyBAAQ\",\n \"Name\": {\n \"value\": \"Avi Green\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006woy3AAA\",\n \"Name\": {\n \"value\": \"Babara Levy\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006c0n6AAA\",\n \"Name\": {\n \"value\": \"Basil Wenceslas\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"0034H000029oY0FQAU\",\n \"Name\": {\n \"value\": \"Contact One\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"0034H000029oY0HQAU\",\n \"Name\": {\n \"value\": \"Contact Three\"\n }\n }\n }\n ]\n }\n }\n }\n },\n \"errors\": []\n}"
808
+ }
809
+ ]
810
+ },
811
+ {
812
+ "name": "Contacts with Account Name",
813
+ "request": {
814
+ "method": "POST",
815
+ "header": [
816
+ {
817
+ "key": "X-Chatter-Entity-Encoding",
818
+ "value": "false",
819
+ "type": "text"
820
+ }
821
+ ],
822
+ "body": {
823
+ "mode": "graphql",
824
+ "graphql": {
825
+ "query": "query contactsByTheirAccountName {\n uiapi {\n query {\n Contact(orderBy: { Account: { Name: { order: DESC } } }) {\n edges {\n node {\n Id\n Name {\n value\n }\n Account {\n Name {\n value\n }\n }\n }\n }\n }\n }\n }\n}",
826
+ "variables": ""
827
+ }
828
+ },
829
+ "url": {
830
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
831
+ "host": [
832
+ "{{_endpoint}}"
833
+ ],
834
+ "path": [
835
+ "services",
836
+ "data",
837
+ "v{{version}}",
838
+ "graphql"
839
+ ]
840
+ }
841
+ },
842
+ "response": [
843
+ {
844
+ "name": "Contacts with Account Name",
845
+ "originalRequest": {
846
+ "method": "POST",
847
+ "header": [
848
+ {
849
+ "key": "X-Chatter-Entity-Encoding",
850
+ "value": "false"
851
+ }
852
+ ],
853
+ "body": {
854
+ "mode": "graphql",
855
+ "graphql": {
856
+ "query": "query contactsByTheirAccountName {\n uiapi {\n query {\n Contact(orderBy: { Account: { Name: { order: DESC } } }) {\n edges {\n node {\n Id\n Name {\n value\n }\n Account {\n Name {\n value\n }\n }\n }\n }\n }\n }\n }\n}",
857
+ "variables": ""
858
+ }
859
+ },
860
+ "url": {
861
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
862
+ "host": [
863
+ "{{_endpoint}}"
864
+ ],
865
+ "path": [
866
+ "services",
867
+ "data",
868
+ "v{{version}}",
869
+ "graphql"
870
+ ]
871
+ }
872
+ },
873
+ "status": "OK",
874
+ "code": 200,
875
+ "_postman_previewlanguage": "json",
876
+ "header": [
877
+ {
878
+ "key": "Date",
879
+ "value": "Fri, 06 Oct 2023 09:12:09 GMT"
880
+ },
881
+ {
882
+ "key": "Strict-Transport-Security",
883
+ "value": "max-age=63072000; includeSubDomains"
884
+ },
885
+ {
886
+ "key": "X-Content-Type-Options",
887
+ "value": "nosniff"
888
+ },
889
+ {
890
+ "key": "X-Robots-Tag",
891
+ "value": "none"
892
+ },
893
+ {
894
+ "key": "Cache-Control",
895
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
896
+ },
897
+ {
898
+ "key": "Content-Type",
899
+ "value": "application/json;charset=UTF-8"
900
+ },
901
+ {
902
+ "key": "Vary",
903
+ "value": "Accept-Encoding"
904
+ },
905
+ {
906
+ "key": "Content-Encoding",
907
+ "value": "gzip"
908
+ },
909
+ {
910
+ "key": "Transfer-Encoding",
911
+ "value": "chunked"
912
+ }
913
+ ],
914
+ "cookie": [],
915
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Contact\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"00358000006c0mzAAA\",\n \"Name\": {\n \"value\": \"Julia Wilds\"\n },\n \"Account\": {\n \"Name\": {\n \"value\": \"University of Arizona\"\n }\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006woy5AAA\",\n \"Name\": {\n \"value\": \"Jane Grey\"\n },\n \"Account\": {\n \"Name\": {\n \"value\": \"University of Arizona\"\n }\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006c0n6AAA\",\n \"Name\": {\n \"value\": \"Basil Wenceslas\"\n },\n \"Account\": {\n \"Name\": {\n \"value\": \"University of Arizona\"\n }\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006c0kdAAA\",\n \"Name\": {\n \"value\": \"John Dodge\"\n },\n \"Account\": {\n \"Name\": {\n \"value\": \"United Oil & Gas, Singapore\"\n }\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006woy9AAA\",\n \"Name\": {\n \"value\": \"Liz D'Cruz\"\n },\n \"Account\": {\n \"Name\": {\n \"value\": \"United Oil & Gas, Singapore\"\n }\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006woy8AAA\",\n \"Name\": {\n \"value\": \"Tom Ripley\"\n },\n \"Account\": {\n \"Name\": {\n \"value\": \"United Oil & Gas, Singapore\"\n }\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006c0kfAAA\",\n \"Name\": {\n \"value\": \"George Dapper\"\n },\n \"Account\": {\n \"Name\": {\n \"value\": \"United Oil & Gas Corp.\"\n }\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006woy1AAA\",\n \"Name\": {\n \"value\": \"Stella Pavlova\"\n },\n \"Account\": {\n \"Name\": {\n \"value\": \"United Oil & Gas Corp.\"\n }\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006woyBAAQ\",\n \"Name\": {\n \"value\": \"Avi Green\"\n },\n \"Account\": {\n \"Name\": {\n \"value\": \"United Oil & Gas Corp.\"\n }\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00358000006c0mxAAA\",\n \"Name\": {\n \"value\": \"Winter Drake\"\n },\n \"Account\": {\n \"Name\": {\n \"value\": \"United Oil & Gas Corp.\"\n }\n }\n }\n }\n ]\n }\n }\n }\n },\n \"errors\": []\n}"
916
+ }
917
+ ]
918
+ },
919
+ {
920
+ "name": "Opportunities Closing Soon",
921
+ "request": {
922
+ "method": "POST",
923
+ "header": [
924
+ {
925
+ "key": "X-Chatter-Entity-Encoding",
926
+ "value": "false",
927
+ "type": "text"
928
+ }
929
+ ],
930
+ "body": {
931
+ "mode": "graphql",
932
+ "graphql": {
933
+ "query": "query opportunitiesClosingSoon($month: Long) {\n uiapi {\n query {\n Opportunity(\n where: {\n StageName: { eq: \"Negotiation/Review\" }\n CloseDate: { CALENDAR_MONTH: { value: { eq: $month } } }\n }\n ) {\n edges {\n node {\n Id\n Name {\n value\n }\n StageName {\n value\n }\n CloseDate {\n value\n displayValue\n }\n Description {\n value\n }\n }\n }\n }\n }\n }\n}",
934
+ "variables": "{\n \"month\": 10\n}"
935
+ }
936
+ },
937
+ "url": {
938
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
939
+ "host": [
940
+ "{{_endpoint}}"
941
+ ],
942
+ "path": [
943
+ "services",
944
+ "data",
945
+ "v{{version}}",
946
+ "graphql"
947
+ ]
948
+ }
949
+ },
950
+ "response": [
951
+ {
952
+ "name": "Opportunities Closing Soon",
953
+ "originalRequest": {
954
+ "method": "POST",
955
+ "header": [
956
+ {
957
+ "key": "X-Chatter-Entity-Encoding",
958
+ "value": "false"
959
+ }
960
+ ],
961
+ "body": {
962
+ "mode": "graphql",
963
+ "graphql": {
964
+ "query": "query opportunitiesClosingSoon($month: Long) {\n uiapi {\n query {\n Opportunity(\n where: {\n StageName: { eq: \"Negotiation/Review\" }\n CloseDate: { CALENDAR_MONTH: { value: { eq: $month } } }\n }\n ) {\n edges {\n node {\n Id\n Name {\n value\n }\n StageName {\n value\n }\n CloseDate {\n value\n displayValue\n }\n Description {\n value\n }\n }\n }\n }\n }\n }\n}",
965
+ "variables": "{\n \"month\": 10\n}"
966
+ }
967
+ },
968
+ "url": {
969
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
970
+ "host": [
971
+ "{{_endpoint}}"
972
+ ],
973
+ "path": [
974
+ "services",
975
+ "data",
976
+ "v{{version}}",
977
+ "graphql"
978
+ ]
979
+ }
980
+ },
981
+ "status": "OK",
982
+ "code": 200,
983
+ "_postman_previewlanguage": "json",
984
+ "header": [
985
+ {
986
+ "key": "Date",
987
+ "value": "Fri, 06 Oct 2023 09:19:42 GMT"
988
+ },
989
+ {
990
+ "key": "Strict-Transport-Security",
991
+ "value": "max-age=63072000; includeSubDomains"
992
+ },
993
+ {
994
+ "key": "X-Content-Type-Options",
995
+ "value": "nosniff"
996
+ },
997
+ {
998
+ "key": "X-Robots-Tag",
999
+ "value": "none"
1000
+ },
1001
+ {
1002
+ "key": "Cache-Control",
1003
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1004
+ },
1005
+ {
1006
+ "key": "Content-Type",
1007
+ "value": "application/json;charset=UTF-8"
1008
+ },
1009
+ {
1010
+ "key": "Vary",
1011
+ "value": "Accept-Encoding"
1012
+ },
1013
+ {
1014
+ "key": "Content-Encoding",
1015
+ "value": "gzip"
1016
+ },
1017
+ {
1018
+ "key": "Transfer-Encoding",
1019
+ "value": "chunked"
1020
+ }
1021
+ ],
1022
+ "cookie": [],
1023
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Opportunity\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"00658000003ceg9AAA\",\n \"Name\": {\n \"value\": \"United Oil Refinery Generators\"\n },\n \"StageName\": {\n \"value\": \"Negotiation/Review\"\n },\n \"CloseDate\": {\n \"value\": \"2023-10-25\",\n \"displayValue\": \"25/10/2023\"\n },\n \"Description\": {\n \"value\": \"This is a sample opportunity.\"\n }\n }\n }\n ]\n }\n }\n }\n },\n \"errors\": []\n}"
1024
+ }
1025
+ ]
1026
+ },
1027
+ {
1028
+ "name": "Opportunities Closing Soon (Explicit AND)",
1029
+ "request": {
1030
+ "method": "POST",
1031
+ "header": [
1032
+ {
1033
+ "key": "X-Chatter-Entity-Encoding",
1034
+ "value": "false",
1035
+ "type": "text"
1036
+ }
1037
+ ],
1038
+ "body": {
1039
+ "mode": "graphql",
1040
+ "graphql": {
1041
+ "query": "query opportunitiesClosingSoonExplicitAND($month: Long) {\n uiapi {\n query {\n Opportunity(\n where: {\n and: [\n { StageName: { eq: \"Negotiation/Review\" } }\n { CloseDate: { CALENDAR_MONTH: { value: { eq: $month } } } }\n ]\n }\n ) {\n edges {\n node {\n Id\n Name {\n value\n }\n StageName {\n value\n }\n CloseDate {\n value\n displayValue\n }\n Description {\n value\n }\n }\n }\n }\n }\n }\n}",
1042
+ "variables": "{\n \"month\": 10\n}"
1043
+ }
1044
+ },
1045
+ "url": {
1046
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1047
+ "host": [
1048
+ "{{_endpoint}}"
1049
+ ],
1050
+ "path": [
1051
+ "services",
1052
+ "data",
1053
+ "v{{version}}",
1054
+ "graphql"
1055
+ ]
1056
+ }
1057
+ },
1058
+ "response": [
1059
+ {
1060
+ "name": "Opportunities Closing Soon (Explicit AND)",
1061
+ "originalRequest": {
1062
+ "method": "POST",
1063
+ "header": [
1064
+ {
1065
+ "key": "X-Chatter-Entity-Encoding",
1066
+ "value": "false"
1067
+ }
1068
+ ],
1069
+ "body": {
1070
+ "mode": "graphql",
1071
+ "graphql": {
1072
+ "query": "query opportunitiesClosingSoonExplicitAND($month: Long) {\n uiapi {\n query {\n Opportunity(\n where: {\n and: [\n { StageName: { eq: \"Negotiation/Review\" } }\n { CloseDate: { CALENDAR_MONTH: { value: { eq: $month } } } }\n ]\n }\n ) {\n edges {\n node {\n Id\n Name {\n value\n }\n StageName {\n value\n }\n CloseDate {\n value\n displayValue\n }\n Description {\n value\n }\n }\n }\n }\n }\n }\n}",
1073
+ "variables": "{\n \"month\": 10\n}"
1074
+ }
1075
+ },
1076
+ "url": {
1077
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1078
+ "host": [
1079
+ "{{_endpoint}}"
1080
+ ],
1081
+ "path": [
1082
+ "services",
1083
+ "data",
1084
+ "v{{version}}",
1085
+ "graphql"
1086
+ ]
1087
+ }
1088
+ },
1089
+ "status": "OK",
1090
+ "code": 200,
1091
+ "_postman_previewlanguage": "json",
1092
+ "header": [
1093
+ {
1094
+ "key": "Date",
1095
+ "value": "Fri, 06 Oct 2023 09:20:51 GMT"
1096
+ },
1097
+ {
1098
+ "key": "Strict-Transport-Security",
1099
+ "value": "max-age=63072000; includeSubDomains"
1100
+ },
1101
+ {
1102
+ "key": "X-Content-Type-Options",
1103
+ "value": "nosniff"
1104
+ },
1105
+ {
1106
+ "key": "X-Robots-Tag",
1107
+ "value": "none"
1108
+ },
1109
+ {
1110
+ "key": "Cache-Control",
1111
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1112
+ },
1113
+ {
1114
+ "key": "Content-Type",
1115
+ "value": "application/json;charset=UTF-8"
1116
+ },
1117
+ {
1118
+ "key": "Vary",
1119
+ "value": "Accept-Encoding"
1120
+ },
1121
+ {
1122
+ "key": "Content-Encoding",
1123
+ "value": "gzip"
1124
+ },
1125
+ {
1126
+ "key": "Transfer-Encoding",
1127
+ "value": "chunked"
1128
+ }
1129
+ ],
1130
+ "cookie": [],
1131
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Opportunity\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"00658000003ceg9AAA\",\n \"Name\": {\n \"value\": \"United Oil Refinery Generators\"\n },\n \"StageName\": {\n \"value\": \"Negotiation/Review\"\n },\n \"CloseDate\": {\n \"value\": \"2023-10-25\",\n \"displayValue\": \"25/10/2023\"\n },\n \"Description\": {\n \"value\": \"This is a sample opportunity.\"\n }\n }\n }\n ]\n }\n }\n }\n },\n \"errors\": []\n}"
1132
+ }
1133
+ ]
1134
+ },
1135
+ {
1136
+ "name": "Opportunities Early Stage",
1137
+ "request": {
1138
+ "method": "POST",
1139
+ "header": [
1140
+ {
1141
+ "key": "X-Chatter-Entity-Encoding",
1142
+ "value": "false",
1143
+ "type": "text"
1144
+ }
1145
+ ],
1146
+ "body": {
1147
+ "mode": "graphql",
1148
+ "graphql": {
1149
+ "query": "query opportunitiesClosed {\n uiapi {\n query {\n Opportunity(\n where: {\n or: [\n { StageName: { eq: \"Prospecting\" } }\n { StageName: { eq: \"Needs Analysis\" } }\n ]\n }\n ) {\n edges {\n node {\n Id\n Name {\n value\n }\n CloseDate {\n value\n displayValue\n }\n Description {\n value\n }\n StageName {\n value\n }\n }\n }\n }\n }\n }\n}",
1150
+ "variables": ""
1151
+ }
1152
+ },
1153
+ "url": {
1154
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1155
+ "host": [
1156
+ "{{_endpoint}}"
1157
+ ],
1158
+ "path": [
1159
+ "services",
1160
+ "data",
1161
+ "v{{version}}",
1162
+ "graphql"
1163
+ ]
1164
+ }
1165
+ },
1166
+ "response": [
1167
+ {
1168
+ "name": "Opportunities Early Stage",
1169
+ "originalRequest": {
1170
+ "method": "POST",
1171
+ "header": [
1172
+ {
1173
+ "key": "X-Chatter-Entity-Encoding",
1174
+ "value": "false"
1175
+ }
1176
+ ],
1177
+ "body": {
1178
+ "mode": "graphql",
1179
+ "graphql": {
1180
+ "query": "query opportunitiesClosed {\n uiapi {\n query {\n Opportunity(\n where: {\n or: [\n { StageName: { eq: \"Prospecting\" } }\n { StageName: { eq: \"Needs Analysis\" } }\n ]\n }\n ) {\n edges {\n node {\n Id\n Name {\n value\n }\n CloseDate {\n value\n displayValue\n }\n Description {\n value\n }\n StageName {\n value\n }\n }\n }\n }\n }\n }\n}",
1181
+ "variables": ""
1182
+ }
1183
+ },
1184
+ "url": {
1185
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1186
+ "host": [
1187
+ "{{_endpoint}}"
1188
+ ],
1189
+ "path": [
1190
+ "services",
1191
+ "data",
1192
+ "v{{version}}",
1193
+ "graphql"
1194
+ ]
1195
+ }
1196
+ },
1197
+ "status": "OK",
1198
+ "code": 200,
1199
+ "_postman_previewlanguage": "json",
1200
+ "header": [
1201
+ {
1202
+ "key": "Date",
1203
+ "value": "Fri, 06 Oct 2023 09:22:21 GMT"
1204
+ },
1205
+ {
1206
+ "key": "Strict-Transport-Security",
1207
+ "value": "max-age=63072000; includeSubDomains"
1208
+ },
1209
+ {
1210
+ "key": "X-Content-Type-Options",
1211
+ "value": "nosniff"
1212
+ },
1213
+ {
1214
+ "key": "X-Robots-Tag",
1215
+ "value": "none"
1216
+ },
1217
+ {
1218
+ "key": "Cache-Control",
1219
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1220
+ },
1221
+ {
1222
+ "key": "Content-Type",
1223
+ "value": "application/json;charset=UTF-8"
1224
+ },
1225
+ {
1226
+ "key": "Vary",
1227
+ "value": "Accept-Encoding"
1228
+ },
1229
+ {
1230
+ "key": "Content-Encoding",
1231
+ "value": "gzip"
1232
+ },
1233
+ {
1234
+ "key": "Transfer-Encoding",
1235
+ "value": "chunked"
1236
+ }
1237
+ ],
1238
+ "cookie": [],
1239
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Opportunity\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"00658000003cegEAAQ\",\n \"Name\": {\n \"value\": \"Pyramid Emergency Generators\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"Description\": {\n \"value\": \"This is a sample description\"\n },\n \"StageName\": {\n \"value\": \"Prospecting\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00658000003cegXAAQ\",\n \"Name\": {\n \"value\": \"United Oil Plant Standby Generators\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"Description\": {\n \"value\": \"00658000003cegXAAQ\"\n },\n \"StageName\": {\n \"value\": \"Needs Analysis\"\n }\n }\n }\n ]\n }\n }\n }\n },\n \"errors\": []\n}"
1240
+ }
1241
+ ]
1242
+ },
1243
+ {
1244
+ "name": "Opportunities Not Closed",
1245
+ "request": {
1246
+ "method": "POST",
1247
+ "header": [
1248
+ {
1249
+ "key": "X-Chatter-Entity-Encoding",
1250
+ "value": "false",
1251
+ "type": "text"
1252
+ }
1253
+ ],
1254
+ "body": {
1255
+ "mode": "graphql",
1256
+ "graphql": {
1257
+ "query": "query opportunitiesNotClosed {\n uiapi {\n query {\n Opportunity(\n where: {\n not: {\n or: [\n { StageName: { eq: \"Closed Won\" } }\n { StageName: { eq: \"Closed Lost\" } }\n ]\n }\n }\n ) {\n edges {\n node {\n Id\n Name {\n value\n }\n CloseDate {\n value\n displayValue\n }\n StageName {\n value\n }\n }\n }\n }\n }\n }\n}",
1258
+ "variables": ""
1259
+ }
1260
+ },
1261
+ "url": {
1262
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1263
+ "host": [
1264
+ "{{_endpoint}}"
1265
+ ],
1266
+ "path": [
1267
+ "services",
1268
+ "data",
1269
+ "v{{version}}",
1270
+ "graphql"
1271
+ ]
1272
+ }
1273
+ },
1274
+ "response": [
1275
+ {
1276
+ "name": "Opportunities Not Closed",
1277
+ "originalRequest": {
1278
+ "method": "POST",
1279
+ "header": [
1280
+ {
1281
+ "key": "X-Chatter-Entity-Encoding",
1282
+ "value": "false"
1283
+ }
1284
+ ],
1285
+ "body": {
1286
+ "mode": "graphql",
1287
+ "graphql": {
1288
+ "query": "query opportunitiesNotClosed {\n uiapi {\n query {\n Opportunity(\n where: {\n not: {\n or: [\n { StageName: { eq: \"Closed Won\" } }\n { StageName: { eq: \"Closed Lost\" } }\n ]\n }\n }\n ) {\n edges {\n node {\n Id\n Name {\n value\n }\n CloseDate {\n value\n displayValue\n }\n StageName {\n value\n }\n }\n }\n }\n }\n }\n}",
1289
+ "variables": ""
1290
+ }
1291
+ },
1292
+ "url": {
1293
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1294
+ "host": [
1295
+ "{{_endpoint}}"
1296
+ ],
1297
+ "path": [
1298
+ "services",
1299
+ "data",
1300
+ "v{{version}}",
1301
+ "graphql"
1302
+ ]
1303
+ }
1304
+ },
1305
+ "status": "OK",
1306
+ "code": 200,
1307
+ "_postman_previewlanguage": "json",
1308
+ "header": [
1309
+ {
1310
+ "key": "Date",
1311
+ "value": "Fri, 06 Oct 2023 09:23:12 GMT"
1312
+ },
1313
+ {
1314
+ "key": "Strict-Transport-Security",
1315
+ "value": "max-age=63072000; includeSubDomains"
1316
+ },
1317
+ {
1318
+ "key": "X-Content-Type-Options",
1319
+ "value": "nosniff"
1320
+ },
1321
+ {
1322
+ "key": "X-Robots-Tag",
1323
+ "value": "none"
1324
+ },
1325
+ {
1326
+ "key": "Cache-Control",
1327
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1328
+ },
1329
+ {
1330
+ "key": "Content-Type",
1331
+ "value": "application/json;charset=UTF-8"
1332
+ },
1333
+ {
1334
+ "key": "Vary",
1335
+ "value": "Accept-Encoding"
1336
+ },
1337
+ {
1338
+ "key": "Content-Encoding",
1339
+ "value": "gzip"
1340
+ },
1341
+ {
1342
+ "key": "Transfer-Encoding",
1343
+ "value": "chunked"
1344
+ }
1345
+ ],
1346
+ "cookie": [],
1347
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"query\": {\n \"Opportunity\": {\n \"edges\": [\n {\n \"node\": {\n \"Id\": \"00658000003cegYAAQ\",\n \"Name\": {\n \"value\": \"Edge Emergency Generator\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"StageName\": {\n \"value\": \"Id. Decision Makers\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00658000003cegEAAQ\",\n \"Name\": {\n \"value\": \"Pyramid Emergency Generators\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"StageName\": {\n \"value\": \"Prospecting\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00658000003ceg4AAA\",\n \"Name\": {\n \"value\": \"Dickenson Mobile Generators\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"StageName\": {\n \"value\": \"Qualification\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00658000003ceg8AAA\",\n \"Name\": {\n \"value\": \"Grand Hotels Kitchen Generator\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"StageName\": {\n \"value\": \"Id. Decision Makers\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00658000003cegBAAQ\",\n \"Name\": {\n \"value\": \"Grand Hotels Guest Portable Generators\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"StageName\": {\n \"value\": \"Value Proposition\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00658000003ceg5AAA\",\n \"Name\": {\n \"value\": \"United Oil Office Portable Generators\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"StageName\": {\n \"value\": \"Negotiation/Review\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00658000003ceg9AAA\",\n \"Name\": {\n \"value\": \"United Oil Refinery Generators\"\n },\n \"CloseDate\": {\n \"value\": \"2023-10-25\",\n \"displayValue\": \"25/10/2023\"\n },\n \"StageName\": {\n \"value\": \"Negotiation/Review\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00658000003cegIAAQ\",\n \"Name\": {\n \"value\": \"United Oil Installations\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"StageName\": {\n \"value\": \"Negotiation/Review\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00658000003cegXAAQ\",\n \"Name\": {\n \"value\": \"United Oil Plant Standby Generators\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"StageName\": {\n \"value\": \"Needs Analysis\"\n }\n }\n },\n {\n \"node\": {\n \"Id\": \"00658000003cegFAAQ\",\n \"Name\": {\n \"value\": \"Express Logistics Portable Truck Generators\"\n },\n \"CloseDate\": {\n \"value\": \"2014-04-19\",\n \"displayValue\": \"19/04/2014\"\n },\n \"StageName\": {\n \"value\": \"Value Proposition\"\n }\n }\n }\n ]\n }\n }\n }\n },\n \"errors\": []\n}"
1348
+ }
1349
+ ]
1350
+ },
1351
+ {
1352
+ "name": "Introspection Query",
1353
+ "request": {
1354
+ "method": "POST",
1355
+ "header": [
1356
+ {
1357
+ "key": "X-Chatter-Entity-Encoding",
1358
+ "value": "false",
1359
+ "type": "text"
1360
+ }
1361
+ ],
1362
+ "body": {
1363
+ "mode": "graphql",
1364
+ "graphql": {
1365
+ "query": "query IntrospectionQuery {\n __schema {\n queryType {\n name\n }\n mutationType {\n name\n }\n subscriptionType {\n name\n }\n types {\n ...FullType\n }\n directives {\n name\n description\n args {\n ...InputValue\n }\n onOperation\n onFragment\n onField\n locations\n }\n }\n}\nfragment FullType on __Type {\n kind\n name\n description\n fields(includeDeprecated: true) {\n name\n description\n args {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: true) {\n name\n description\n isDeprecated\n deprecationReason\n }\n possibleTypes {\n ...TypeRef\n }\n}\nfragment InputValue on __InputValue {\n name\n description\n type {\n ...TypeRef\n }\n defaultValue\n}\nfragment TypeRef on __Type {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n }\n }\n }\n}\n",
1366
+ "variables": ""
1367
+ }
1368
+ },
1369
+ "url": {
1370
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1371
+ "host": [
1372
+ "{{_endpoint}}"
1373
+ ],
1374
+ "path": [
1375
+ "services",
1376
+ "data",
1377
+ "v{{version}}",
1378
+ "graphql"
1379
+ ]
1380
+ }
1381
+ },
1382
+ "response": []
1383
+ },
1384
+ {
1385
+ "name": "Create Account",
1386
+ "request": {
1387
+ "method": "POST",
1388
+ "header": [
1389
+ {
1390
+ "key": "X-Chatter-Entity-Encoding",
1391
+ "value": "false"
1392
+ }
1393
+ ],
1394
+ "body": {
1395
+ "mode": "graphql",
1396
+ "graphql": {
1397
+ "query": "mutation AccountExample{\n uiapi {\n AccountCreate(input: {\n Account: {\n Name: \"Trailblazer Express\"\n }\n }) {\n Record {\n Id\n Name {\n value\n }\n }\n }\n }\n}",
1398
+ "variables": ""
1399
+ }
1400
+ },
1401
+ "url": {
1402
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1403
+ "host": [
1404
+ "{{_endpoint}}"
1405
+ ],
1406
+ "path": [
1407
+ "services",
1408
+ "data",
1409
+ "v{{version}}",
1410
+ "graphql"
1411
+ ]
1412
+ }
1413
+ },
1414
+ "response": [
1415
+ {
1416
+ "name": "Create Account Success",
1417
+ "originalRequest": {
1418
+ "method": "POST",
1419
+ "header": [
1420
+ {
1421
+ "key": "X-Chatter-Entity-Encoding",
1422
+ "value": "false"
1423
+ }
1424
+ ],
1425
+ "body": {
1426
+ "mode": "graphql",
1427
+ "graphql": {
1428
+ "query": "mutation AccountExample{\n uiapi {\n AccountCreate(input: {\n Account: {\n Name: \"Trailblazer Express\"\n }\n }) {\n Record {\n Id\n Name {\n value\n }\n }\n }\n }\n}",
1429
+ "variables": ""
1430
+ }
1431
+ },
1432
+ "url": {
1433
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1434
+ "host": [
1435
+ "{{_endpoint}}"
1436
+ ],
1437
+ "path": [
1438
+ "services",
1439
+ "data",
1440
+ "v{{version}}",
1441
+ "graphql"
1442
+ ]
1443
+ }
1444
+ },
1445
+ "status": "OK",
1446
+ "code": 200,
1447
+ "_postman_previewlanguage": "json",
1448
+ "header": [
1449
+ {
1450
+ "key": "Date",
1451
+ "value": "Wed, 25 Sep 2024 10:17:20 GMT"
1452
+ },
1453
+ {
1454
+ "key": "Content-Type",
1455
+ "value": "application/json;charset=UTF-8"
1456
+ },
1457
+ {
1458
+ "key": "Transfer-Encoding",
1459
+ "value": "chunked"
1460
+ },
1461
+ {
1462
+ "key": "Connection",
1463
+ "value": "keep-alive"
1464
+ },
1465
+ {
1466
+ "key": "Vary",
1467
+ "value": "Accept-Encoding"
1468
+ },
1469
+ {
1470
+ "key": "Content-Encoding",
1471
+ "value": "gzip"
1472
+ },
1473
+ {
1474
+ "key": "Sforce-Limit-Info",
1475
+ "value": "api-usage=19/15000"
1476
+ },
1477
+ {
1478
+ "key": "X-Content-Type-Options",
1479
+ "value": "nosniff"
1480
+ },
1481
+ {
1482
+ "key": "Cache-Control",
1483
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1484
+ },
1485
+ {
1486
+ "key": "Strict-Transport-Security",
1487
+ "value": "max-age=63072000; includeSubDomains"
1488
+ },
1489
+ {
1490
+ "key": "X-Robots-Tag",
1491
+ "value": "none"
1492
+ },
1493
+ {
1494
+ "key": "Server",
1495
+ "value": "sfdcedge"
1496
+ },
1497
+ {
1498
+ "key": "X-SFDC-Request-Id",
1499
+ "value": "7544180f23a92250a9d97e61d60fbaa6"
1500
+ }
1501
+ ],
1502
+ "cookie": [],
1503
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"AccountCreate\": {\n \"Record\": {\n \"Id\": \"<Id>\",\n \"Name\": {\n \"value\": \"Trailblazer Express\"\n }\n }\n }\n }\n },\n \"errors\": []\n}"
1504
+ }
1505
+ ]
1506
+ },
1507
+ {
1508
+ "name": "Delete Account",
1509
+ "request": {
1510
+ "method": "POST",
1511
+ "header": [
1512
+ {
1513
+ "key": "X-Chatter-Entity-Encoding",
1514
+ "value": "false"
1515
+ }
1516
+ ],
1517
+ "body": {
1518
+ "mode": "graphql",
1519
+ "graphql": {
1520
+ "query": "mutation AccountDeleteExample{\n uiapi {\n AccountDelete(input: {\n Id: \"<Id>\"\n })\n {\n Id\n }\n }\n}",
1521
+ "variables": ""
1522
+ }
1523
+ },
1524
+ "url": {
1525
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1526
+ "host": [
1527
+ "{{_endpoint}}"
1528
+ ],
1529
+ "path": [
1530
+ "services",
1531
+ "data",
1532
+ "v{{version}}",
1533
+ "graphql"
1534
+ ]
1535
+ }
1536
+ },
1537
+ "response": [
1538
+ {
1539
+ "name": "Delete Account",
1540
+ "originalRequest": {
1541
+ "method": "POST",
1542
+ "header": [
1543
+ {
1544
+ "key": "X-Chatter-Entity-Encoding",
1545
+ "value": "false"
1546
+ }
1547
+ ],
1548
+ "body": {
1549
+ "mode": "graphql",
1550
+ "graphql": {
1551
+ "query": "mutation AccountDeleteExample{\n uiapi {\n AccountDelete(input: {\n Id: \"001d2000007svGbAAI\"\n })\n {\n Id\n }\n }\n}",
1552
+ "variables": ""
1553
+ }
1554
+ },
1555
+ "url": {
1556
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1557
+ "host": [
1558
+ "{{_endpoint}}"
1559
+ ],
1560
+ "path": [
1561
+ "services",
1562
+ "data",
1563
+ "v{{version}}",
1564
+ "graphql"
1565
+ ]
1566
+ }
1567
+ },
1568
+ "status": "OK",
1569
+ "code": 200,
1570
+ "_postman_previewlanguage": "json",
1571
+ "header": [
1572
+ {
1573
+ "key": "Date",
1574
+ "value": "Wed, 25 Sep 2024 10:19:44 GMT"
1575
+ },
1576
+ {
1577
+ "key": "Content-Type",
1578
+ "value": "application/json;charset=UTF-8"
1579
+ },
1580
+ {
1581
+ "key": "Transfer-Encoding",
1582
+ "value": "chunked"
1583
+ },
1584
+ {
1585
+ "key": "Connection",
1586
+ "value": "keep-alive"
1587
+ },
1588
+ {
1589
+ "key": "Cache-Control",
1590
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1591
+ },
1592
+ {
1593
+ "key": "Sforce-Limit-Info",
1594
+ "value": "api-usage=29/15000"
1595
+ },
1596
+ {
1597
+ "key": "Vary",
1598
+ "value": "Accept-Encoding"
1599
+ },
1600
+ {
1601
+ "key": "X-Content-Type-Options",
1602
+ "value": "nosniff"
1603
+ },
1604
+ {
1605
+ "key": "X-Robots-Tag",
1606
+ "value": "none"
1607
+ },
1608
+ {
1609
+ "key": "Strict-Transport-Security",
1610
+ "value": "max-age=63072000; includeSubDomains"
1611
+ },
1612
+ {
1613
+ "key": "Content-Encoding",
1614
+ "value": "gzip"
1615
+ },
1616
+ {
1617
+ "key": "Server",
1618
+ "value": "sfdcedge"
1619
+ },
1620
+ {
1621
+ "key": "X-SFDC-Request-Id",
1622
+ "value": "d78d961d21e6478c84b6be0e9a95e2b4"
1623
+ }
1624
+ ],
1625
+ "cookie": [],
1626
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"AccountDelete\": {\n \"Id\": \"<Id>\"\n }\n }\n },\n \"errors\": []\n}"
1627
+ }
1628
+ ]
1629
+ },
1630
+ {
1631
+ "name": "Update Account",
1632
+ "request": {
1633
+ "method": "POST",
1634
+ "header": [
1635
+ {
1636
+ "key": "X-Chatter-Entity-Encoding",
1637
+ "value": "false"
1638
+ }
1639
+ ],
1640
+ "body": {
1641
+ "mode": "graphql",
1642
+ "graphql": {
1643
+ "query": "mutation AccountUpdateExample{\n uiapi {\n AccountUpdate(input: {\n Account: {\n Name: \"Smith\"\n }\n Id: \"<Id>\"\n })\n {\n success\n }\n }\n}",
1644
+ "variables": ""
1645
+ }
1646
+ },
1647
+ "url": {
1648
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1649
+ "host": [
1650
+ "{{_endpoint}}"
1651
+ ],
1652
+ "path": [
1653
+ "services",
1654
+ "data",
1655
+ "v{{version}}",
1656
+ "graphql"
1657
+ ]
1658
+ }
1659
+ },
1660
+ "response": [
1661
+ {
1662
+ "name": "Upate Account Success",
1663
+ "originalRequest": {
1664
+ "method": "POST",
1665
+ "header": [
1666
+ {
1667
+ "key": "X-Chatter-Entity-Encoding",
1668
+ "value": "false"
1669
+ }
1670
+ ],
1671
+ "body": {
1672
+ "mode": "graphql",
1673
+ "graphql": {
1674
+ "query": "mutation AccountUpdateExample{\n uiapi {\n AccountUpdate(input: {\n Account: {\n Name: \"Smith\"\n }\n Id: \"<Id>\"\n })\n {\n success\n }\n }\n}",
1675
+ "variables": ""
1676
+ }
1677
+ },
1678
+ "url": {
1679
+ "raw": "{{_endpoint}}/services/data/v{{version}}/graphql",
1680
+ "host": [
1681
+ "{{_endpoint}}"
1682
+ ],
1683
+ "path": [
1684
+ "services",
1685
+ "data",
1686
+ "v{{version}}",
1687
+ "graphql"
1688
+ ]
1689
+ }
1690
+ },
1691
+ "status": "OK",
1692
+ "code": 200,
1693
+ "_postman_previewlanguage": "json",
1694
+ "header": [
1695
+ {
1696
+ "key": "Date",
1697
+ "value": "Wed, 25 Sep 2024 10:18:33 GMT"
1698
+ },
1699
+ {
1700
+ "key": "Content-Type",
1701
+ "value": "application/json;charset=UTF-8"
1702
+ },
1703
+ {
1704
+ "key": "Transfer-Encoding",
1705
+ "value": "chunked"
1706
+ },
1707
+ {
1708
+ "key": "Connection",
1709
+ "value": "keep-alive"
1710
+ },
1711
+ {
1712
+ "key": "Sforce-Limit-Info",
1713
+ "value": "api-usage=21/15000"
1714
+ },
1715
+ {
1716
+ "key": "X-Content-Type-Options",
1717
+ "value": "nosniff"
1718
+ },
1719
+ {
1720
+ "key": "Strict-Transport-Security",
1721
+ "value": "max-age=63072000; includeSubDomains"
1722
+ },
1723
+ {
1724
+ "key": "X-Robots-Tag",
1725
+ "value": "none"
1726
+ },
1727
+ {
1728
+ "key": "Vary",
1729
+ "value": "Accept-Encoding"
1730
+ },
1731
+ {
1732
+ "key": "Content-Encoding",
1733
+ "value": "gzip"
1734
+ },
1735
+ {
1736
+ "key": "Cache-Control",
1737
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1738
+ },
1739
+ {
1740
+ "key": "Server",
1741
+ "value": "sfdcedge"
1742
+ },
1743
+ {
1744
+ "key": "X-SFDC-Request-Id",
1745
+ "value": "d775c889db46c3df564d9650265dc948"
1746
+ }
1747
+ ],
1748
+ "cookie": [],
1749
+ "body": "{\n \"data\": {\n \"uiapi\": {\n \"AccountUpdate\": {\n \"success\": true\n }\n }\n },\n \"errors\": []\n}"
1750
+ }
1751
+ ]
1752
+ }
1753
+ ]
1754
+ }