@gobodo/gobodo-api-promise 0.1.34
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.
- package/README.md +794 -0
- package/dist/ApiClient.js +720 -0
- package/dist/api/ActionTypesApi.js +113 -0
- package/dist/api/AdCampaignsApi.js +500 -0
- package/dist/api/AdManagementApi.js +722 -0
- package/dist/api/AdminDataManagementApi.js +111 -0
- package/dist/api/AdsApi.js +384 -0
- package/dist/api/AttachmentsApi.js +465 -0
- package/dist/api/AuthenticationApi.js +418 -0
- package/dist/api/CategoriesApi.js +451 -0
- package/dist/api/CommentsApi.js +520 -0
- package/dist/api/ContentManagementApi.js +1491 -0
- package/dist/api/ConversationsApi.js +559 -0
- package/dist/api/DataSheetImportsApi.js +1066 -0
- package/dist/api/DefaultApi.js +696 -0
- package/dist/api/DocumentsApi.js +807 -0
- package/dist/api/EntryPartsApi.js +847 -0
- package/dist/api/FacebookApi.js +88 -0
- package/dist/api/FieldsApi.js +243 -0
- package/dist/api/FilesApi.js +116 -0
- package/dist/api/FormsApi.js +1136 -0
- package/dist/api/FunctionsApi.js +111 -0
- package/dist/api/GeocodeApi.js +340 -0
- package/dist/api/GoogleApi.js +88 -0
- package/dist/api/GraphActionsApi.js +674 -0
- package/dist/api/GraphObjectTypesApi.js +527 -0
- package/dist/api/GraphObjectsApi.js +4026 -0
- package/dist/api/GraphRelationshipTypesApi.js +1055 -0
- package/dist/api/GraphRelationshipsApi.js +1921 -0
- package/dist/api/GraphSchemasApi.js +459 -0
- package/dist/api/GraphTraversalApi.js +415 -0
- package/dist/api/GraphsApi.js +716 -0
- package/dist/api/GroupsApi.js +731 -0
- package/dist/api/IAMApi.js +268 -0
- package/dist/api/ImagesApi.js +535 -0
- package/dist/api/InvitesApi.js +339 -0
- package/dist/api/LikesApi.js +785 -0
- package/dist/api/LinkedINApi.js +88 -0
- package/dist/api/LiveMeetingsApi.js +175 -0
- package/dist/api/MeetingEventsApi.js +358 -0
- package/dist/api/PagesApi.js +605 -0
- package/dist/api/PostsApi.js +330 -0
- package/dist/api/PrivateMessagesApi.js +965 -0
- package/dist/api/PublicationsApi.js +103 -0
- package/dist/api/ScreensApi.js +224 -0
- package/dist/api/SocialIntegrationApi.js +214 -0
- package/dist/api/StripeAccountsApi.js +2309 -0
- package/dist/api/TagsApi.js +111 -0
- package/dist/api/TemplatesApi.js +224 -0
- package/dist/api/ThemeMappingsApi.js +219 -0
- package/dist/api/TransactionsApi.js +161 -0
- package/dist/api/TwitterApi.js +88 -0
- package/dist/api/UserTagsApi.js +592 -0
- package/dist/api/UsersApi.js +591 -0
- package/dist/api/UtilsApi.js +80 -0
- package/dist/api/VideosApi.js +709 -0
- package/dist/index.js +1301 -0
- package/dist/model/APIClient.js +354 -0
- package/dist/model/AccountSessionInput.js +222 -0
- package/dist/model/AccountSessionResponse.js +171 -0
- package/dist/model/ApplicationPaymentAccountResponse.js +185 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureException.js +265 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCause.js +234 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCauseStackTraceInner.js +303 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCauseSuppressedInner.js +187 -0
- package/dist/model/Article.js +668 -0
- package/dist/model/Authorization.js +166 -0
- package/dist/model/Balance.js +267 -0
- package/dist/model/BalanceDetails.js +164 -0
- package/dist/model/BalanceResponse.js +139 -0
- package/dist/model/BankAccountInfo.js +232 -0
- package/dist/model/CardInfo.js +213 -0
- package/dist/model/Comment.js +495 -0
- package/dist/model/Coordinates.js +129 -0
- package/dist/model/CreateAccountResponse.js +233 -0
- package/dist/model/CreateStripeAccountInput.js +216 -0
- package/dist/model/CreateStripeCustomerInput.js +195 -0
- package/dist/model/CustomerResponse.js +168 -0
- package/dist/model/DataObject.js +129 -0
- package/dist/model/DataSheetImport.js +732 -0
- package/dist/model/DataSheetImportPrivacySettings.js +154 -0
- package/dist/model/DataSheetImportSummary.js +206 -0
- package/dist/model/Document.js +743 -0
- package/dist/model/DocumentPart.js +612 -0
- package/dist/model/DocumentPartType.js +358 -0
- package/dist/model/DocumentType.js +458 -0
- package/dist/model/FieldMapping.js +185 -0
- package/dist/model/Fields.js +737 -0
- package/dist/model/File.js +341 -0
- package/dist/model/FileAttachmentUploadObject.js +341 -0
- package/dist/model/Filter.js +137 -0
- package/dist/model/FilterManager.js +154 -0
- package/dist/model/Form.js +393 -0
- package/dist/model/FormSection.js +304 -0
- package/dist/model/FormSubmission.js +238 -0
- package/dist/model/Geocode.js +191 -0
- package/dist/model/GeocodePayload.js +141 -0
- package/dist/model/GeolocationInput.js +216 -0
- package/dist/model/Graph.js +499 -0
- package/dist/model/GraphAction.js +298 -0
- package/dist/model/GraphDatabaseService.js +254 -0
- package/dist/model/GraphGeocode.js +282 -0
- package/dist/model/GraphIteratorEntryPart.js +129 -0
- package/dist/model/GraphObject.js +454 -0
- package/dist/model/GraphObjectPayload.js +430 -0
- package/dist/model/GraphObjectSchema.js +545 -0
- package/dist/model/GraphObjectType.js +626 -0
- package/dist/model/GraphObjectTypeSchema.js +645 -0
- package/dist/model/GraphOwner.js +158 -0
- package/dist/model/GraphRelationObjectObject.js +273 -0
- package/dist/model/GraphRelationship.js +301 -0
- package/dist/model/GraphRelationshipPayload.js +214 -0
- package/dist/model/GraphRelationshipType.js +675 -0
- package/dist/model/GraphSchema.js +645 -0
- package/dist/model/GraphTraversalInput.js +1125 -0
- package/dist/model/Image.js +449 -0
- package/dist/model/ImageUploadObject.js +449 -0
- package/dist/model/InputPart.js +191 -0
- package/dist/model/InputPartMediaType.js +214 -0
- package/dist/model/Link.js +305 -0
- package/dist/model/LiveStreamInfo.js +167 -0
- package/dist/model/MeetingEvent.js +591 -0
- package/dist/model/MeetingEventTimezone.js +187 -0
- package/dist/model/MeetingInfo.js +220 -0
- package/dist/model/Member.js +525 -0
- package/dist/model/MemberGroupCategory.js +237 -0
- package/dist/model/MemberList.js +96 -0
- package/dist/model/MessageGroup.js +160 -0
- package/dist/model/MultipartBody.js +133 -0
- package/dist/model/Objecttype.js +615 -0
- package/dist/model/Page.js +370 -0
- package/dist/model/PageSchema.js +482 -0
- package/dist/model/Pageable.js +235 -0
- package/dist/model/Path.js +110 -0
- package/dist/model/PaymentAccountObject.js +209 -0
- package/dist/model/PaymentIntentInput.js +214 -0
- package/dist/model/PaymentIntentResponse.js +137 -0
- package/dist/model/PaymentMethod.js +319 -0
- package/dist/model/PaymentMethodInput.js +291 -0
- package/dist/model/PaymentMethodResponse.js +139 -0
- package/dist/model/PaymentMethodsResponse.js +158 -0
- package/dist/model/Payout.js +313 -0
- package/dist/model/PayoutInput.js +347 -0
- package/dist/model/PayoutResponse.js +142 -0
- package/dist/model/Post.js +368 -0
- package/dist/model/PrivateMessage.js +494 -0
- package/dist/model/PrivateMessageConversation.js +520 -0
- package/dist/model/PrivateMessageConversationSchema.js +268 -0
- package/dist/model/Profile.js +191 -0
- package/dist/model/Profiletype.js +210 -0
- package/dist/model/PropertyContainer.js +162 -0
- package/dist/model/PurgeDataDefaultResponseValue.js +151 -0
- package/dist/model/RelationshipMapping.js +264 -0
- package/dist/model/ScreenSchema.js +834 -0
- package/dist/model/SimulcastInfo.js +175 -0
- package/dist/model/SkinField.js +737 -0
- package/dist/model/SocialGroup.js +602 -0
- package/dist/model/SocialGroupType.js +327 -0
- package/dist/model/Sort.js +154 -0
- package/dist/model/SourceTypes.js +154 -0
- package/dist/model/StatusUpdate.js +312 -0
- package/dist/model/StreetAddress.js +224 -0
- package/dist/model/StripeAccount.js +272 -0
- package/dist/model/StripeCustomerAccount.js +212 -0
- package/dist/model/Template.js +272 -0
- package/dist/model/TemplateSchema.js +300 -0
- package/dist/model/ThemeMapping.js +245 -0
- package/dist/model/ThemeMappingPayload.js +239 -0
- package/dist/model/Transaction.js +137 -0
- package/dist/model/Transfer.js +286 -0
- package/dist/model/TransferInput.js +288 -0
- package/dist/model/TransferResponse.js +173 -0
- package/dist/model/TransferResponsePaymentMethodDetails.js +286 -0
- package/dist/model/TraversalRelationResponse.js +176 -0
- package/dist/model/User.js +525 -0
- package/dist/model/UserDataPayload.js +525 -0
- package/dist/model/UserDomain.js +191 -0
- package/dist/model/UserInvite.js +404 -0
- package/dist/model/UserInviteInput.js +245 -0
- package/dist/model/UserSchema.js +525 -0
- package/dist/model/UserTag.js +246 -0
- package/dist/model/Userid.js +133 -0
- package/dist/model/Video.js +632 -0
- package/dist/model/VideoLiveUrl.js +137 -0
- package/dist/model/VideoSchema.js +717 -0
- package/dist/model/VideoUploadObject.js +632 -0
- package/dist/model/ZeusPortalCategory.js +434 -0
- package/package.json +46 -0
|
@@ -0,0 +1,1125 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _GeolocationInput = _interopRequireDefault(require("./GeolocationInput"));
|
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
12
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
13
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
14
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
15
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
16
|
+
* gobodo-api
|
|
17
|
+
* REST Interface for Gobodo API
|
|
18
|
+
*
|
|
19
|
+
* The version of the OpenAPI document: 0.1.34
|
|
20
|
+
* Contact: info@gobodo.io
|
|
21
|
+
*
|
|
22
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
23
|
+
* https://openapi-generator.tech
|
|
24
|
+
* Do not edit the class manually.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
/**
|
|
28
|
+
* The GraphTraversalInput model module.
|
|
29
|
+
* @module model/GraphTraversalInput
|
|
30
|
+
* @version 0.1.34
|
|
31
|
+
*/
|
|
32
|
+
var GraphTraversalInput = /*#__PURE__*/function () {
|
|
33
|
+
/**
|
|
34
|
+
* Constructs a new <code>GraphTraversalInput</code>.
|
|
35
|
+
* @alias module:model/GraphTraversalInput
|
|
36
|
+
*/
|
|
37
|
+
function GraphTraversalInput() {
|
|
38
|
+
_classCallCheck(this, GraphTraversalInput);
|
|
39
|
+
GraphTraversalInput.initialize(this);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Initializes the fields of this object.
|
|
44
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
45
|
+
* Only for internal use.
|
|
46
|
+
*/
|
|
47
|
+
_createClass(GraphTraversalInput, [{
|
|
48
|
+
key: "getGraphId",
|
|
49
|
+
value:
|
|
50
|
+
/**
|
|
51
|
+
* @return {Number}
|
|
52
|
+
*/
|
|
53
|
+
function getGraphId() {
|
|
54
|
+
return this.graphId;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @param {Number} graphId
|
|
59
|
+
*/
|
|
60
|
+
}, {
|
|
61
|
+
key: "setGraphId",
|
|
62
|
+
value: function setGraphId(graphId) {
|
|
63
|
+
this['graphId'] = graphId;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* @return {Number}
|
|
67
|
+
*/
|
|
68
|
+
}, {
|
|
69
|
+
key: "getStartObjectId",
|
|
70
|
+
value: function getStartObjectId() {
|
|
71
|
+
return this.startObjectId;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* @param {Number} startObjectId
|
|
76
|
+
*/
|
|
77
|
+
}, {
|
|
78
|
+
key: "setStartObjectId",
|
|
79
|
+
value: function setStartObjectId(startObjectId) {
|
|
80
|
+
this['startObjectId'] = startObjectId;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* @return {Number}
|
|
84
|
+
*/
|
|
85
|
+
}, {
|
|
86
|
+
key: "getEndObjectId",
|
|
87
|
+
value: function getEndObjectId() {
|
|
88
|
+
return this.endObjectId;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* @param {Number} endObjectId
|
|
93
|
+
*/
|
|
94
|
+
}, {
|
|
95
|
+
key: "setEndObjectId",
|
|
96
|
+
value: function setEndObjectId(endObjectId) {
|
|
97
|
+
this['endObjectId'] = endObjectId;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* @return {Array.<String>}
|
|
101
|
+
*/
|
|
102
|
+
}, {
|
|
103
|
+
key: "getStartObjectTypes",
|
|
104
|
+
value: function getStartObjectTypes() {
|
|
105
|
+
return this.startObjectTypes;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* @param {Array.<String>} startObjectTypes
|
|
110
|
+
*/
|
|
111
|
+
}, {
|
|
112
|
+
key: "setStartObjectTypes",
|
|
113
|
+
value: function setStartObjectTypes(startObjectTypes) {
|
|
114
|
+
this['startObjectTypes'] = startObjectTypes;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* @return {Array.<String>}
|
|
118
|
+
*/
|
|
119
|
+
}, {
|
|
120
|
+
key: "getEndObjectTypes",
|
|
121
|
+
value: function getEndObjectTypes() {
|
|
122
|
+
return this.endObjectTypes;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @param {Array.<String>} endObjectTypes
|
|
127
|
+
*/
|
|
128
|
+
}, {
|
|
129
|
+
key: "setEndObjectTypes",
|
|
130
|
+
value: function setEndObjectTypes(endObjectTypes) {
|
|
131
|
+
this['endObjectTypes'] = endObjectTypes;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* @return {Array.<String>}
|
|
135
|
+
*/
|
|
136
|
+
}, {
|
|
137
|
+
key: "getExcludeObjectTypes",
|
|
138
|
+
value: function getExcludeObjectTypes() {
|
|
139
|
+
return this.excludeObjectTypes;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* @param {Array.<String>} excludeObjectTypes
|
|
144
|
+
*/
|
|
145
|
+
}, {
|
|
146
|
+
key: "setExcludeObjectTypes",
|
|
147
|
+
value: function setExcludeObjectTypes(excludeObjectTypes) {
|
|
148
|
+
this['excludeObjectTypes'] = excludeObjectTypes;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* @return {Array.<String>}
|
|
152
|
+
*/
|
|
153
|
+
}, {
|
|
154
|
+
key: "getRelationshipTypes",
|
|
155
|
+
value: function getRelationshipTypes() {
|
|
156
|
+
return this.relationshipTypes;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* @param {Array.<String>} relationshipTypes
|
|
161
|
+
*/
|
|
162
|
+
}, {
|
|
163
|
+
key: "setRelationshipTypes",
|
|
164
|
+
value: function setRelationshipTypes(relationshipTypes) {
|
|
165
|
+
this['relationshipTypes'] = relationshipTypes;
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* @return {Array.<String>}
|
|
169
|
+
*/
|
|
170
|
+
}, {
|
|
171
|
+
key: "getExcludeRelationshipTypes",
|
|
172
|
+
value: function getExcludeRelationshipTypes() {
|
|
173
|
+
return this.excludeRelationshipTypes;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* @param {Array.<String>} excludeRelationshipTypes
|
|
178
|
+
*/
|
|
179
|
+
}, {
|
|
180
|
+
key: "setExcludeRelationshipTypes",
|
|
181
|
+
value: function setExcludeRelationshipTypes(excludeRelationshipTypes) {
|
|
182
|
+
this['excludeRelationshipTypes'] = excludeRelationshipTypes;
|
|
183
|
+
}
|
|
184
|
+
/**
|
|
185
|
+
* @return {Array.<String>}
|
|
186
|
+
*/
|
|
187
|
+
}, {
|
|
188
|
+
key: "getActionTypes",
|
|
189
|
+
value: function getActionTypes() {
|
|
190
|
+
return this.actionTypes;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* @param {Array.<String>} actionTypes
|
|
195
|
+
*/
|
|
196
|
+
}, {
|
|
197
|
+
key: "setActionTypes",
|
|
198
|
+
value: function setActionTypes(actionTypes) {
|
|
199
|
+
this['actionTypes'] = actionTypes;
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* @return {Array.<String>}
|
|
203
|
+
*/
|
|
204
|
+
}, {
|
|
205
|
+
key: "getExcludeActionTypes",
|
|
206
|
+
value: function getExcludeActionTypes() {
|
|
207
|
+
return this.excludeActionTypes;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* @param {Array.<String>} excludeActionTypes
|
|
212
|
+
*/
|
|
213
|
+
}, {
|
|
214
|
+
key: "setExcludeActionTypes",
|
|
215
|
+
value: function setExcludeActionTypes(excludeActionTypes) {
|
|
216
|
+
this['excludeActionTypes'] = excludeActionTypes;
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* @return {Array.<String>}
|
|
220
|
+
*/
|
|
221
|
+
}, {
|
|
222
|
+
key: "getStartObjectHasRelationships",
|
|
223
|
+
value: function getStartObjectHasRelationships() {
|
|
224
|
+
return this.startObjectHasRelationships;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* @param {Array.<String>} startObjectHasRelationships
|
|
229
|
+
*/
|
|
230
|
+
}, {
|
|
231
|
+
key: "setStartObjectHasRelationships",
|
|
232
|
+
value: function setStartObjectHasRelationships(startObjectHasRelationships) {
|
|
233
|
+
this['startObjectHasRelationships'] = startObjectHasRelationships;
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* @return {Array.<String>}
|
|
237
|
+
*/
|
|
238
|
+
}, {
|
|
239
|
+
key: "getEndObjectHasRelationships",
|
|
240
|
+
value: function getEndObjectHasRelationships() {
|
|
241
|
+
return this.endObjectHasRelationships;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* @param {Array.<String>} endObjectHasRelationships
|
|
246
|
+
*/
|
|
247
|
+
}, {
|
|
248
|
+
key: "setEndObjectHasRelationships",
|
|
249
|
+
value: function setEndObjectHasRelationships(endObjectHasRelationships) {
|
|
250
|
+
this['endObjectHasRelationships'] = endObjectHasRelationships;
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* @return {Array.<String>}
|
|
254
|
+
*/
|
|
255
|
+
}, {
|
|
256
|
+
key: "getStartObjectNotHasRelationships",
|
|
257
|
+
value: function getStartObjectNotHasRelationships() {
|
|
258
|
+
return this.startObjectNotHasRelationships;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* @param {Array.<String>} startObjectNotHasRelationships
|
|
263
|
+
*/
|
|
264
|
+
}, {
|
|
265
|
+
key: "setStartObjectNotHasRelationships",
|
|
266
|
+
value: function setStartObjectNotHasRelationships(startObjectNotHasRelationships) {
|
|
267
|
+
this['startObjectNotHasRelationships'] = startObjectNotHasRelationships;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* @return {Array.<String>}
|
|
271
|
+
*/
|
|
272
|
+
}, {
|
|
273
|
+
key: "getEndObjectNotHasRelationships",
|
|
274
|
+
value: function getEndObjectNotHasRelationships() {
|
|
275
|
+
return this.endObjectNotHasRelationships;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* @param {Array.<String>} endObjectNotHasRelationships
|
|
280
|
+
*/
|
|
281
|
+
}, {
|
|
282
|
+
key: "setEndObjectNotHasRelationships",
|
|
283
|
+
value: function setEndObjectNotHasRelationships(endObjectNotHasRelationships) {
|
|
284
|
+
this['endObjectNotHasRelationships'] = endObjectNotHasRelationships;
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* @return {Array.<String>}
|
|
288
|
+
*/
|
|
289
|
+
}, {
|
|
290
|
+
key: "getStartObjectHasActions",
|
|
291
|
+
value: function getStartObjectHasActions() {
|
|
292
|
+
return this.startObjectHasActions;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* @param {Array.<String>} startObjectHasActions
|
|
297
|
+
*/
|
|
298
|
+
}, {
|
|
299
|
+
key: "setStartObjectHasActions",
|
|
300
|
+
value: function setStartObjectHasActions(startObjectHasActions) {
|
|
301
|
+
this['startObjectHasActions'] = startObjectHasActions;
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* @return {Array.<String>}
|
|
305
|
+
*/
|
|
306
|
+
}, {
|
|
307
|
+
key: "getEndObjectHasActions",
|
|
308
|
+
value: function getEndObjectHasActions() {
|
|
309
|
+
return this.endObjectHasActions;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* @param {Array.<String>} endObjectHasActions
|
|
314
|
+
*/
|
|
315
|
+
}, {
|
|
316
|
+
key: "setEndObjectHasActions",
|
|
317
|
+
value: function setEndObjectHasActions(endObjectHasActions) {
|
|
318
|
+
this['endObjectHasActions'] = endObjectHasActions;
|
|
319
|
+
}
|
|
320
|
+
/**
|
|
321
|
+
* @return {Array.<String>}
|
|
322
|
+
*/
|
|
323
|
+
}, {
|
|
324
|
+
key: "getStartObjectNotHasActions",
|
|
325
|
+
value: function getStartObjectNotHasActions() {
|
|
326
|
+
return this.startObjectNotHasActions;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* @param {Array.<String>} startObjectNotHasActions
|
|
331
|
+
*/
|
|
332
|
+
}, {
|
|
333
|
+
key: "setStartObjectNotHasActions",
|
|
334
|
+
value: function setStartObjectNotHasActions(startObjectNotHasActions) {
|
|
335
|
+
this['startObjectNotHasActions'] = startObjectNotHasActions;
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
* @return {Array.<String>}
|
|
339
|
+
*/
|
|
340
|
+
}, {
|
|
341
|
+
key: "getEndObjectNotHasActions",
|
|
342
|
+
value: function getEndObjectNotHasActions() {
|
|
343
|
+
return this.endObjectNotHasActions;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* @param {Array.<String>} endObjectNotHasActions
|
|
348
|
+
*/
|
|
349
|
+
}, {
|
|
350
|
+
key: "setEndObjectNotHasActions",
|
|
351
|
+
value: function setEndObjectNotHasActions(endObjectNotHasActions) {
|
|
352
|
+
this['endObjectNotHasActions'] = endObjectNotHasActions;
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* @return {module:model/GeolocationInput}
|
|
356
|
+
*/
|
|
357
|
+
}, {
|
|
358
|
+
key: "getStartGeoLocation",
|
|
359
|
+
value: function getStartGeoLocation() {
|
|
360
|
+
return this.startGeoLocation;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* @param {module:model/GeolocationInput} startGeoLocation
|
|
365
|
+
*/
|
|
366
|
+
}, {
|
|
367
|
+
key: "setStartGeoLocation",
|
|
368
|
+
value: function setStartGeoLocation(startGeoLocation) {
|
|
369
|
+
this['startGeoLocation'] = startGeoLocation;
|
|
370
|
+
}
|
|
371
|
+
/**
|
|
372
|
+
* @return {module:model/GeolocationInput}
|
|
373
|
+
*/
|
|
374
|
+
}, {
|
|
375
|
+
key: "getEndGeoLocation",
|
|
376
|
+
value: function getEndGeoLocation() {
|
|
377
|
+
return this.endGeoLocation;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* @param {module:model/GeolocationInput} endGeoLocation
|
|
382
|
+
*/
|
|
383
|
+
}, {
|
|
384
|
+
key: "setEndGeoLocation",
|
|
385
|
+
value: function setEndGeoLocation(endGeoLocation) {
|
|
386
|
+
this['endGeoLocation'] = endGeoLocation;
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* @return {module:model/GraphTraversalInput.DirectionEnum}
|
|
390
|
+
*/
|
|
391
|
+
}, {
|
|
392
|
+
key: "getDirection",
|
|
393
|
+
value: function getDirection() {
|
|
394
|
+
return this.direction;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* @param {module:model/GraphTraversalInput.DirectionEnum} direction
|
|
399
|
+
*/
|
|
400
|
+
}, {
|
|
401
|
+
key: "setDirection",
|
|
402
|
+
value: function setDirection(direction) {
|
|
403
|
+
this['direction'] = direction;
|
|
404
|
+
}
|
|
405
|
+
/**
|
|
406
|
+
* @return {module:model/GraphTraversalInput.StartObjectHasRelationshipDirectionEnum}
|
|
407
|
+
*/
|
|
408
|
+
}, {
|
|
409
|
+
key: "getStartObjectHasRelationshipDirection",
|
|
410
|
+
value: function getStartObjectHasRelationshipDirection() {
|
|
411
|
+
return this.startObjectHasRelationshipDirection;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
/**
|
|
415
|
+
* @param {module:model/GraphTraversalInput.StartObjectHasRelationshipDirectionEnum} startObjectHasRelationshipDirection
|
|
416
|
+
*/
|
|
417
|
+
}, {
|
|
418
|
+
key: "setStartObjectHasRelationshipDirection",
|
|
419
|
+
value: function setStartObjectHasRelationshipDirection(startObjectHasRelationshipDirection) {
|
|
420
|
+
this['startObjectHasRelationshipDirection'] = startObjectHasRelationshipDirection;
|
|
421
|
+
}
|
|
422
|
+
/**
|
|
423
|
+
* @return {module:model/GraphTraversalInput.EndObjectHasRelationshipDirectionEnum}
|
|
424
|
+
*/
|
|
425
|
+
}, {
|
|
426
|
+
key: "getEndObjectHasRelationshipDirection",
|
|
427
|
+
value: function getEndObjectHasRelationshipDirection() {
|
|
428
|
+
return this.endObjectHasRelationshipDirection;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* @param {module:model/GraphTraversalInput.EndObjectHasRelationshipDirectionEnum} endObjectHasRelationshipDirection
|
|
433
|
+
*/
|
|
434
|
+
}, {
|
|
435
|
+
key: "setEndObjectHasRelationshipDirection",
|
|
436
|
+
value: function setEndObjectHasRelationshipDirection(endObjectHasRelationshipDirection) {
|
|
437
|
+
this['endObjectHasRelationshipDirection'] = endObjectHasRelationshipDirection;
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* @return {module:model/GraphTraversalInput.StartObjectNotHasRelationshipDirectionEnum}
|
|
441
|
+
*/
|
|
442
|
+
}, {
|
|
443
|
+
key: "getStartObjectNotHasRelationshipDirection",
|
|
444
|
+
value: function getStartObjectNotHasRelationshipDirection() {
|
|
445
|
+
return this.startObjectNotHasRelationshipDirection;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* @param {module:model/GraphTraversalInput.StartObjectNotHasRelationshipDirectionEnum} startObjectNotHasRelationshipDirection
|
|
450
|
+
*/
|
|
451
|
+
}, {
|
|
452
|
+
key: "setStartObjectNotHasRelationshipDirection",
|
|
453
|
+
value: function setStartObjectNotHasRelationshipDirection(startObjectNotHasRelationshipDirection) {
|
|
454
|
+
this['startObjectNotHasRelationshipDirection'] = startObjectNotHasRelationshipDirection;
|
|
455
|
+
}
|
|
456
|
+
/**
|
|
457
|
+
* @return {module:model/GraphTraversalInput.EndObjectNotHasRelationshipDirectionEnum}
|
|
458
|
+
*/
|
|
459
|
+
}, {
|
|
460
|
+
key: "getEndObjectNotHasRelationshipDirection",
|
|
461
|
+
value: function getEndObjectNotHasRelationshipDirection() {
|
|
462
|
+
return this.endObjectNotHasRelationshipDirection;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
/**
|
|
466
|
+
* @param {module:model/GraphTraversalInput.EndObjectNotHasRelationshipDirectionEnum} endObjectNotHasRelationshipDirection
|
|
467
|
+
*/
|
|
468
|
+
}, {
|
|
469
|
+
key: "setEndObjectNotHasRelationshipDirection",
|
|
470
|
+
value: function setEndObjectNotHasRelationshipDirection(endObjectNotHasRelationshipDirection) {
|
|
471
|
+
this['endObjectNotHasRelationshipDirection'] = endObjectNotHasRelationshipDirection;
|
|
472
|
+
}
|
|
473
|
+
/**
|
|
474
|
+
* @return {module:model/GraphTraversalInput}
|
|
475
|
+
*/
|
|
476
|
+
}, {
|
|
477
|
+
key: "getAppendTo",
|
|
478
|
+
value: function getAppendTo() {
|
|
479
|
+
return this.appendTo;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* @param {module:model/GraphTraversalInput} appendTo
|
|
484
|
+
*/
|
|
485
|
+
}, {
|
|
486
|
+
key: "setAppendTo",
|
|
487
|
+
value: function setAppendTo(appendTo) {
|
|
488
|
+
this['appendTo'] = appendTo;
|
|
489
|
+
}
|
|
490
|
+
/**
|
|
491
|
+
* @return {module:model/GraphTraversalInput}
|
|
492
|
+
*/
|
|
493
|
+
}, {
|
|
494
|
+
key: "getUnionWith",
|
|
495
|
+
value: function getUnionWith() {
|
|
496
|
+
return this.unionWith;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* @param {module:model/GraphTraversalInput} unionWith
|
|
501
|
+
*/
|
|
502
|
+
}, {
|
|
503
|
+
key: "setUnionWith",
|
|
504
|
+
value: function setUnionWith(unionWith) {
|
|
505
|
+
this['unionWith'] = unionWith;
|
|
506
|
+
}
|
|
507
|
+
/**
|
|
508
|
+
* @return {module:model/GraphTraversalInput}
|
|
509
|
+
*/
|
|
510
|
+
}, {
|
|
511
|
+
key: "getIntersectionWith",
|
|
512
|
+
value: function getIntersectionWith() {
|
|
513
|
+
return this.intersectionWith;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
/**
|
|
517
|
+
* @param {module:model/GraphTraversalInput} intersectionWith
|
|
518
|
+
*/
|
|
519
|
+
}, {
|
|
520
|
+
key: "setIntersectionWith",
|
|
521
|
+
value: function setIntersectionWith(intersectionWith) {
|
|
522
|
+
this['intersectionWith'] = intersectionWith;
|
|
523
|
+
}
|
|
524
|
+
/**
|
|
525
|
+
* @return {Boolean}
|
|
526
|
+
*/
|
|
527
|
+
}, {
|
|
528
|
+
key: "getShortestPath",
|
|
529
|
+
value: function getShortestPath() {
|
|
530
|
+
return this.shortestPath;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
/**
|
|
534
|
+
* @param {Boolean} shortestPath
|
|
535
|
+
*/
|
|
536
|
+
}, {
|
|
537
|
+
key: "setShortestPath",
|
|
538
|
+
value: function setShortestPath(shortestPath) {
|
|
539
|
+
this['shortestPath'] = shortestPath;
|
|
540
|
+
}
|
|
541
|
+
/**
|
|
542
|
+
* @return {Number}
|
|
543
|
+
*/
|
|
544
|
+
}, {
|
|
545
|
+
key: "getMinPathLength",
|
|
546
|
+
value: function getMinPathLength() {
|
|
547
|
+
return this.minPathLength;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
/**
|
|
551
|
+
* @param {Number} minPathLength
|
|
552
|
+
*/
|
|
553
|
+
}, {
|
|
554
|
+
key: "setMinPathLength",
|
|
555
|
+
value: function setMinPathLength(minPathLength) {
|
|
556
|
+
this['minPathLength'] = minPathLength;
|
|
557
|
+
}
|
|
558
|
+
/**
|
|
559
|
+
* @return {Number}
|
|
560
|
+
*/
|
|
561
|
+
}, {
|
|
562
|
+
key: "getMaxPathLength",
|
|
563
|
+
value: function getMaxPathLength() {
|
|
564
|
+
return this.maxPathLength;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
/**
|
|
568
|
+
* @param {Number} maxPathLength
|
|
569
|
+
*/
|
|
570
|
+
}, {
|
|
571
|
+
key: "setMaxPathLength",
|
|
572
|
+
value: function setMaxPathLength(maxPathLength) {
|
|
573
|
+
this['maxPathLength'] = maxPathLength;
|
|
574
|
+
}
|
|
575
|
+
/**
|
|
576
|
+
* @return {Number}
|
|
577
|
+
*/
|
|
578
|
+
}, {
|
|
579
|
+
key: "getStartIndex",
|
|
580
|
+
value: function getStartIndex() {
|
|
581
|
+
return this.startIndex;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* @param {Number} startIndex
|
|
586
|
+
*/
|
|
587
|
+
}, {
|
|
588
|
+
key: "setStartIndex",
|
|
589
|
+
value: function setStartIndex(startIndex) {
|
|
590
|
+
this['startIndex'] = startIndex;
|
|
591
|
+
}
|
|
592
|
+
/**
|
|
593
|
+
* @return {Number}
|
|
594
|
+
*/
|
|
595
|
+
}, {
|
|
596
|
+
key: "getCount",
|
|
597
|
+
value: function getCount() {
|
|
598
|
+
return this.count;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
/**
|
|
602
|
+
* @param {Number} count
|
|
603
|
+
*/
|
|
604
|
+
}, {
|
|
605
|
+
key: "setCount",
|
|
606
|
+
value: function setCount(count) {
|
|
607
|
+
this['count'] = count;
|
|
608
|
+
}
|
|
609
|
+
}], [{
|
|
610
|
+
key: "initialize",
|
|
611
|
+
value: function initialize(obj) {}
|
|
612
|
+
|
|
613
|
+
/**
|
|
614
|
+
* Constructs a <code>GraphTraversalInput</code> from a plain JavaScript object, optionally creating a new instance.
|
|
615
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
616
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
617
|
+
* @param {module:model/GraphTraversalInput} obj Optional instance to populate.
|
|
618
|
+
* @return {module:model/GraphTraversalInput} The populated <code>GraphTraversalInput</code> instance.
|
|
619
|
+
*/
|
|
620
|
+
}, {
|
|
621
|
+
key: "constructFromObject",
|
|
622
|
+
value: function constructFromObject(data, obj) {
|
|
623
|
+
if (data) {
|
|
624
|
+
obj = obj || new GraphTraversalInput();
|
|
625
|
+
if (data.hasOwnProperty('graphId')) {
|
|
626
|
+
obj['graphId'] = _ApiClient["default"].convertToType(data['graphId'], 'Number');
|
|
627
|
+
}
|
|
628
|
+
if (data.hasOwnProperty('startObjectId')) {
|
|
629
|
+
obj['startObjectId'] = _ApiClient["default"].convertToType(data['startObjectId'], 'Number');
|
|
630
|
+
}
|
|
631
|
+
if (data.hasOwnProperty('endObjectId')) {
|
|
632
|
+
obj['endObjectId'] = _ApiClient["default"].convertToType(data['endObjectId'], 'Number');
|
|
633
|
+
}
|
|
634
|
+
if (data.hasOwnProperty('startObjectTypes')) {
|
|
635
|
+
obj['startObjectTypes'] = _ApiClient["default"].convertToType(data['startObjectTypes'], ['String']);
|
|
636
|
+
}
|
|
637
|
+
if (data.hasOwnProperty('endObjectTypes')) {
|
|
638
|
+
obj['endObjectTypes'] = _ApiClient["default"].convertToType(data['endObjectTypes'], ['String']);
|
|
639
|
+
}
|
|
640
|
+
if (data.hasOwnProperty('excludeObjectTypes')) {
|
|
641
|
+
obj['excludeObjectTypes'] = _ApiClient["default"].convertToType(data['excludeObjectTypes'], ['String']);
|
|
642
|
+
}
|
|
643
|
+
if (data.hasOwnProperty('relationshipTypes')) {
|
|
644
|
+
obj['relationshipTypes'] = _ApiClient["default"].convertToType(data['relationshipTypes'], ['String']);
|
|
645
|
+
}
|
|
646
|
+
if (data.hasOwnProperty('excludeRelationshipTypes')) {
|
|
647
|
+
obj['excludeRelationshipTypes'] = _ApiClient["default"].convertToType(data['excludeRelationshipTypes'], ['String']);
|
|
648
|
+
}
|
|
649
|
+
if (data.hasOwnProperty('actionTypes')) {
|
|
650
|
+
obj['actionTypes'] = _ApiClient["default"].convertToType(data['actionTypes'], ['String']);
|
|
651
|
+
}
|
|
652
|
+
if (data.hasOwnProperty('excludeActionTypes')) {
|
|
653
|
+
obj['excludeActionTypes'] = _ApiClient["default"].convertToType(data['excludeActionTypes'], ['String']);
|
|
654
|
+
}
|
|
655
|
+
if (data.hasOwnProperty('startObjectHasRelationships')) {
|
|
656
|
+
obj['startObjectHasRelationships'] = _ApiClient["default"].convertToType(data['startObjectHasRelationships'], ['String']);
|
|
657
|
+
}
|
|
658
|
+
if (data.hasOwnProperty('endObjectHasRelationships')) {
|
|
659
|
+
obj['endObjectHasRelationships'] = _ApiClient["default"].convertToType(data['endObjectHasRelationships'], ['String']);
|
|
660
|
+
}
|
|
661
|
+
if (data.hasOwnProperty('startObjectNotHasRelationships')) {
|
|
662
|
+
obj['startObjectNotHasRelationships'] = _ApiClient["default"].convertToType(data['startObjectNotHasRelationships'], ['String']);
|
|
663
|
+
}
|
|
664
|
+
if (data.hasOwnProperty('endObjectNotHasRelationships')) {
|
|
665
|
+
obj['endObjectNotHasRelationships'] = _ApiClient["default"].convertToType(data['endObjectNotHasRelationships'], ['String']);
|
|
666
|
+
}
|
|
667
|
+
if (data.hasOwnProperty('startObjectHasActions')) {
|
|
668
|
+
obj['startObjectHasActions'] = _ApiClient["default"].convertToType(data['startObjectHasActions'], ['String']);
|
|
669
|
+
}
|
|
670
|
+
if (data.hasOwnProperty('endObjectHasActions')) {
|
|
671
|
+
obj['endObjectHasActions'] = _ApiClient["default"].convertToType(data['endObjectHasActions'], ['String']);
|
|
672
|
+
}
|
|
673
|
+
if (data.hasOwnProperty('startObjectNotHasActions')) {
|
|
674
|
+
obj['startObjectNotHasActions'] = _ApiClient["default"].convertToType(data['startObjectNotHasActions'], ['String']);
|
|
675
|
+
}
|
|
676
|
+
if (data.hasOwnProperty('endObjectNotHasActions')) {
|
|
677
|
+
obj['endObjectNotHasActions'] = _ApiClient["default"].convertToType(data['endObjectNotHasActions'], ['String']);
|
|
678
|
+
}
|
|
679
|
+
if (data.hasOwnProperty('startGeoLocation')) {
|
|
680
|
+
obj['startGeoLocation'] = _GeolocationInput["default"].constructFromObject(data['startGeoLocation']);
|
|
681
|
+
}
|
|
682
|
+
if (data.hasOwnProperty('endGeoLocation')) {
|
|
683
|
+
obj['endGeoLocation'] = _GeolocationInput["default"].constructFromObject(data['endGeoLocation']);
|
|
684
|
+
}
|
|
685
|
+
if (data.hasOwnProperty('direction')) {
|
|
686
|
+
obj['direction'] = _ApiClient["default"].convertToType(data['direction'], 'String');
|
|
687
|
+
}
|
|
688
|
+
if (data.hasOwnProperty('startObjectHasRelationshipDirection')) {
|
|
689
|
+
obj['startObjectHasRelationshipDirection'] = _ApiClient["default"].convertToType(data['startObjectHasRelationshipDirection'], 'String');
|
|
690
|
+
}
|
|
691
|
+
if (data.hasOwnProperty('endObjectHasRelationshipDirection')) {
|
|
692
|
+
obj['endObjectHasRelationshipDirection'] = _ApiClient["default"].convertToType(data['endObjectHasRelationshipDirection'], 'String');
|
|
693
|
+
}
|
|
694
|
+
if (data.hasOwnProperty('startObjectNotHasRelationshipDirection')) {
|
|
695
|
+
obj['startObjectNotHasRelationshipDirection'] = _ApiClient["default"].convertToType(data['startObjectNotHasRelationshipDirection'], 'String');
|
|
696
|
+
}
|
|
697
|
+
if (data.hasOwnProperty('endObjectNotHasRelationshipDirection')) {
|
|
698
|
+
obj['endObjectNotHasRelationshipDirection'] = _ApiClient["default"].convertToType(data['endObjectNotHasRelationshipDirection'], 'String');
|
|
699
|
+
}
|
|
700
|
+
if (data.hasOwnProperty('appendTo')) {
|
|
701
|
+
obj['appendTo'] = GraphTraversalInput.constructFromObject(data['appendTo']);
|
|
702
|
+
}
|
|
703
|
+
if (data.hasOwnProperty('unionWith')) {
|
|
704
|
+
obj['unionWith'] = GraphTraversalInput.constructFromObject(data['unionWith']);
|
|
705
|
+
}
|
|
706
|
+
if (data.hasOwnProperty('intersectionWith')) {
|
|
707
|
+
obj['intersectionWith'] = GraphTraversalInput.constructFromObject(data['intersectionWith']);
|
|
708
|
+
}
|
|
709
|
+
if (data.hasOwnProperty('shortestPath')) {
|
|
710
|
+
obj['shortestPath'] = _ApiClient["default"].convertToType(data['shortestPath'], 'Boolean');
|
|
711
|
+
}
|
|
712
|
+
if (data.hasOwnProperty('minPathLength')) {
|
|
713
|
+
obj['minPathLength'] = _ApiClient["default"].convertToType(data['minPathLength'], 'Number');
|
|
714
|
+
}
|
|
715
|
+
if (data.hasOwnProperty('maxPathLength')) {
|
|
716
|
+
obj['maxPathLength'] = _ApiClient["default"].convertToType(data['maxPathLength'], 'Number');
|
|
717
|
+
}
|
|
718
|
+
if (data.hasOwnProperty('startIndex')) {
|
|
719
|
+
obj['startIndex'] = _ApiClient["default"].convertToType(data['startIndex'], 'Number');
|
|
720
|
+
}
|
|
721
|
+
if (data.hasOwnProperty('count')) {
|
|
722
|
+
obj['count'] = _ApiClient["default"].convertToType(data['count'], 'Number');
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
return obj;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
/**
|
|
729
|
+
* Validates the JSON data with respect to <code>GraphTraversalInput</code>.
|
|
730
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
731
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>GraphTraversalInput</code>.
|
|
732
|
+
*/
|
|
733
|
+
}, {
|
|
734
|
+
key: "validateJSON",
|
|
735
|
+
value: function validateJSON(data) {
|
|
736
|
+
// ensure the json data is an array
|
|
737
|
+
if (!Array.isArray(data['startObjectTypes'])) {
|
|
738
|
+
throw new Error("Expected the field `startObjectTypes` to be an array in the JSON data but got " + data['startObjectTypes']);
|
|
739
|
+
}
|
|
740
|
+
// ensure the json data is an array
|
|
741
|
+
if (!Array.isArray(data['endObjectTypes'])) {
|
|
742
|
+
throw new Error("Expected the field `endObjectTypes` to be an array in the JSON data but got " + data['endObjectTypes']);
|
|
743
|
+
}
|
|
744
|
+
// ensure the json data is an array
|
|
745
|
+
if (!Array.isArray(data['excludeObjectTypes'])) {
|
|
746
|
+
throw new Error("Expected the field `excludeObjectTypes` to be an array in the JSON data but got " + data['excludeObjectTypes']);
|
|
747
|
+
}
|
|
748
|
+
// ensure the json data is an array
|
|
749
|
+
if (!Array.isArray(data['relationshipTypes'])) {
|
|
750
|
+
throw new Error("Expected the field `relationshipTypes` to be an array in the JSON data but got " + data['relationshipTypes']);
|
|
751
|
+
}
|
|
752
|
+
// ensure the json data is an array
|
|
753
|
+
if (!Array.isArray(data['excludeRelationshipTypes'])) {
|
|
754
|
+
throw new Error("Expected the field `excludeRelationshipTypes` to be an array in the JSON data but got " + data['excludeRelationshipTypes']);
|
|
755
|
+
}
|
|
756
|
+
// ensure the json data is an array
|
|
757
|
+
if (!Array.isArray(data['actionTypes'])) {
|
|
758
|
+
throw new Error("Expected the field `actionTypes` to be an array in the JSON data but got " + data['actionTypes']);
|
|
759
|
+
}
|
|
760
|
+
// ensure the json data is an array
|
|
761
|
+
if (!Array.isArray(data['excludeActionTypes'])) {
|
|
762
|
+
throw new Error("Expected the field `excludeActionTypes` to be an array in the JSON data but got " + data['excludeActionTypes']);
|
|
763
|
+
}
|
|
764
|
+
// ensure the json data is an array
|
|
765
|
+
if (!Array.isArray(data['startObjectHasRelationships'])) {
|
|
766
|
+
throw new Error("Expected the field `startObjectHasRelationships` to be an array in the JSON data but got " + data['startObjectHasRelationships']);
|
|
767
|
+
}
|
|
768
|
+
// ensure the json data is an array
|
|
769
|
+
if (!Array.isArray(data['endObjectHasRelationships'])) {
|
|
770
|
+
throw new Error("Expected the field `endObjectHasRelationships` to be an array in the JSON data but got " + data['endObjectHasRelationships']);
|
|
771
|
+
}
|
|
772
|
+
// ensure the json data is an array
|
|
773
|
+
if (!Array.isArray(data['startObjectNotHasRelationships'])) {
|
|
774
|
+
throw new Error("Expected the field `startObjectNotHasRelationships` to be an array in the JSON data but got " + data['startObjectNotHasRelationships']);
|
|
775
|
+
}
|
|
776
|
+
// ensure the json data is an array
|
|
777
|
+
if (!Array.isArray(data['endObjectNotHasRelationships'])) {
|
|
778
|
+
throw new Error("Expected the field `endObjectNotHasRelationships` to be an array in the JSON data but got " + data['endObjectNotHasRelationships']);
|
|
779
|
+
}
|
|
780
|
+
// ensure the json data is an array
|
|
781
|
+
if (!Array.isArray(data['startObjectHasActions'])) {
|
|
782
|
+
throw new Error("Expected the field `startObjectHasActions` to be an array in the JSON data but got " + data['startObjectHasActions']);
|
|
783
|
+
}
|
|
784
|
+
// ensure the json data is an array
|
|
785
|
+
if (!Array.isArray(data['endObjectHasActions'])) {
|
|
786
|
+
throw new Error("Expected the field `endObjectHasActions` to be an array in the JSON data but got " + data['endObjectHasActions']);
|
|
787
|
+
}
|
|
788
|
+
// ensure the json data is an array
|
|
789
|
+
if (!Array.isArray(data['startObjectNotHasActions'])) {
|
|
790
|
+
throw new Error("Expected the field `startObjectNotHasActions` to be an array in the JSON data but got " + data['startObjectNotHasActions']);
|
|
791
|
+
}
|
|
792
|
+
// ensure the json data is an array
|
|
793
|
+
if (!Array.isArray(data['endObjectNotHasActions'])) {
|
|
794
|
+
throw new Error("Expected the field `endObjectNotHasActions` to be an array in the JSON data but got " + data['endObjectNotHasActions']);
|
|
795
|
+
}
|
|
796
|
+
// validate the optional field `startGeoLocation`
|
|
797
|
+
if (data['startGeoLocation']) {
|
|
798
|
+
// data not null
|
|
799
|
+
_GeolocationInput["default"].validateJSON(data['startGeoLocation']);
|
|
800
|
+
}
|
|
801
|
+
// validate the optional field `endGeoLocation`
|
|
802
|
+
if (data['endGeoLocation']) {
|
|
803
|
+
// data not null
|
|
804
|
+
_GeolocationInput["default"].validateJSON(data['endGeoLocation']);
|
|
805
|
+
}
|
|
806
|
+
// ensure the json data is a string
|
|
807
|
+
if (data['direction'] && !(typeof data['direction'] === 'string' || data['direction'] instanceof String)) {
|
|
808
|
+
throw new Error("Expected the field `direction` to be a primitive type in the JSON string but got " + data['direction']);
|
|
809
|
+
}
|
|
810
|
+
// ensure the json data is a string
|
|
811
|
+
if (data['startObjectHasRelationshipDirection'] && !(typeof data['startObjectHasRelationshipDirection'] === 'string' || data['startObjectHasRelationshipDirection'] instanceof String)) {
|
|
812
|
+
throw new Error("Expected the field `startObjectHasRelationshipDirection` to be a primitive type in the JSON string but got " + data['startObjectHasRelationshipDirection']);
|
|
813
|
+
}
|
|
814
|
+
// ensure the json data is a string
|
|
815
|
+
if (data['endObjectHasRelationshipDirection'] && !(typeof data['endObjectHasRelationshipDirection'] === 'string' || data['endObjectHasRelationshipDirection'] instanceof String)) {
|
|
816
|
+
throw new Error("Expected the field `endObjectHasRelationshipDirection` to be a primitive type in the JSON string but got " + data['endObjectHasRelationshipDirection']);
|
|
817
|
+
}
|
|
818
|
+
// ensure the json data is a string
|
|
819
|
+
if (data['startObjectNotHasRelationshipDirection'] && !(typeof data['startObjectNotHasRelationshipDirection'] === 'string' || data['startObjectNotHasRelationshipDirection'] instanceof String)) {
|
|
820
|
+
throw new Error("Expected the field `startObjectNotHasRelationshipDirection` to be a primitive type in the JSON string but got " + data['startObjectNotHasRelationshipDirection']);
|
|
821
|
+
}
|
|
822
|
+
// ensure the json data is a string
|
|
823
|
+
if (data['endObjectNotHasRelationshipDirection'] && !(typeof data['endObjectNotHasRelationshipDirection'] === 'string' || data['endObjectNotHasRelationshipDirection'] instanceof String)) {
|
|
824
|
+
throw new Error("Expected the field `endObjectNotHasRelationshipDirection` to be a primitive type in the JSON string but got " + data['endObjectNotHasRelationshipDirection']);
|
|
825
|
+
}
|
|
826
|
+
// validate the optional field `appendTo`
|
|
827
|
+
if (data['appendTo']) {
|
|
828
|
+
// data not null
|
|
829
|
+
GraphTraversalInput.validateJSON(data['appendTo']);
|
|
830
|
+
}
|
|
831
|
+
// validate the optional field `unionWith`
|
|
832
|
+
if (data['unionWith']) {
|
|
833
|
+
// data not null
|
|
834
|
+
GraphTraversalInput.validateJSON(data['unionWith']);
|
|
835
|
+
}
|
|
836
|
+
// validate the optional field `intersectionWith`
|
|
837
|
+
if (data['intersectionWith']) {
|
|
838
|
+
// data not null
|
|
839
|
+
GraphTraversalInput.validateJSON(data['intersectionWith']);
|
|
840
|
+
}
|
|
841
|
+
return true;
|
|
842
|
+
}
|
|
843
|
+
}]);
|
|
844
|
+
return GraphTraversalInput;
|
|
845
|
+
}();
|
|
846
|
+
/**
|
|
847
|
+
* @member {Number} graphId
|
|
848
|
+
*/
|
|
849
|
+
GraphTraversalInput.prototype['graphId'] = undefined;
|
|
850
|
+
|
|
851
|
+
/**
|
|
852
|
+
* @member {Number} startObjectId
|
|
853
|
+
*/
|
|
854
|
+
GraphTraversalInput.prototype['startObjectId'] = undefined;
|
|
855
|
+
|
|
856
|
+
/**
|
|
857
|
+
* @member {Number} endObjectId
|
|
858
|
+
*/
|
|
859
|
+
GraphTraversalInput.prototype['endObjectId'] = undefined;
|
|
860
|
+
|
|
861
|
+
/**
|
|
862
|
+
* @member {Array.<String>} startObjectTypes
|
|
863
|
+
*/
|
|
864
|
+
GraphTraversalInput.prototype['startObjectTypes'] = undefined;
|
|
865
|
+
|
|
866
|
+
/**
|
|
867
|
+
* @member {Array.<String>} endObjectTypes
|
|
868
|
+
*/
|
|
869
|
+
GraphTraversalInput.prototype['endObjectTypes'] = undefined;
|
|
870
|
+
|
|
871
|
+
/**
|
|
872
|
+
* @member {Array.<String>} excludeObjectTypes
|
|
873
|
+
*/
|
|
874
|
+
GraphTraversalInput.prototype['excludeObjectTypes'] = undefined;
|
|
875
|
+
|
|
876
|
+
/**
|
|
877
|
+
* @member {Array.<String>} relationshipTypes
|
|
878
|
+
*/
|
|
879
|
+
GraphTraversalInput.prototype['relationshipTypes'] = undefined;
|
|
880
|
+
|
|
881
|
+
/**
|
|
882
|
+
* @member {Array.<String>} excludeRelationshipTypes
|
|
883
|
+
*/
|
|
884
|
+
GraphTraversalInput.prototype['excludeRelationshipTypes'] = undefined;
|
|
885
|
+
|
|
886
|
+
/**
|
|
887
|
+
* @member {Array.<String>} actionTypes
|
|
888
|
+
*/
|
|
889
|
+
GraphTraversalInput.prototype['actionTypes'] = undefined;
|
|
890
|
+
|
|
891
|
+
/**
|
|
892
|
+
* @member {Array.<String>} excludeActionTypes
|
|
893
|
+
*/
|
|
894
|
+
GraphTraversalInput.prototype['excludeActionTypes'] = undefined;
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* @member {Array.<String>} startObjectHasRelationships
|
|
898
|
+
*/
|
|
899
|
+
GraphTraversalInput.prototype['startObjectHasRelationships'] = undefined;
|
|
900
|
+
|
|
901
|
+
/**
|
|
902
|
+
* @member {Array.<String>} endObjectHasRelationships
|
|
903
|
+
*/
|
|
904
|
+
GraphTraversalInput.prototype['endObjectHasRelationships'] = undefined;
|
|
905
|
+
|
|
906
|
+
/**
|
|
907
|
+
* @member {Array.<String>} startObjectNotHasRelationships
|
|
908
|
+
*/
|
|
909
|
+
GraphTraversalInput.prototype['startObjectNotHasRelationships'] = undefined;
|
|
910
|
+
|
|
911
|
+
/**
|
|
912
|
+
* @member {Array.<String>} endObjectNotHasRelationships
|
|
913
|
+
*/
|
|
914
|
+
GraphTraversalInput.prototype['endObjectNotHasRelationships'] = undefined;
|
|
915
|
+
|
|
916
|
+
/**
|
|
917
|
+
* @member {Array.<String>} startObjectHasActions
|
|
918
|
+
*/
|
|
919
|
+
GraphTraversalInput.prototype['startObjectHasActions'] = undefined;
|
|
920
|
+
|
|
921
|
+
/**
|
|
922
|
+
* @member {Array.<String>} endObjectHasActions
|
|
923
|
+
*/
|
|
924
|
+
GraphTraversalInput.prototype['endObjectHasActions'] = undefined;
|
|
925
|
+
|
|
926
|
+
/**
|
|
927
|
+
* @member {Array.<String>} startObjectNotHasActions
|
|
928
|
+
*/
|
|
929
|
+
GraphTraversalInput.prototype['startObjectNotHasActions'] = undefined;
|
|
930
|
+
|
|
931
|
+
/**
|
|
932
|
+
* @member {Array.<String>} endObjectNotHasActions
|
|
933
|
+
*/
|
|
934
|
+
GraphTraversalInput.prototype['endObjectNotHasActions'] = undefined;
|
|
935
|
+
|
|
936
|
+
/**
|
|
937
|
+
* @member {module:model/GeolocationInput} startGeoLocation
|
|
938
|
+
*/
|
|
939
|
+
GraphTraversalInput.prototype['startGeoLocation'] = undefined;
|
|
940
|
+
|
|
941
|
+
/**
|
|
942
|
+
* @member {module:model/GeolocationInput} endGeoLocation
|
|
943
|
+
*/
|
|
944
|
+
GraphTraversalInput.prototype['endGeoLocation'] = undefined;
|
|
945
|
+
|
|
946
|
+
/**
|
|
947
|
+
* @member {module:model/GraphTraversalInput.DirectionEnum} direction
|
|
948
|
+
*/
|
|
949
|
+
GraphTraversalInput.prototype['direction'] = undefined;
|
|
950
|
+
|
|
951
|
+
/**
|
|
952
|
+
* @member {module:model/GraphTraversalInput.StartObjectHasRelationshipDirectionEnum} startObjectHasRelationshipDirection
|
|
953
|
+
*/
|
|
954
|
+
GraphTraversalInput.prototype['startObjectHasRelationshipDirection'] = undefined;
|
|
955
|
+
|
|
956
|
+
/**
|
|
957
|
+
* @member {module:model/GraphTraversalInput.EndObjectHasRelationshipDirectionEnum} endObjectHasRelationshipDirection
|
|
958
|
+
*/
|
|
959
|
+
GraphTraversalInput.prototype['endObjectHasRelationshipDirection'] = undefined;
|
|
960
|
+
|
|
961
|
+
/**
|
|
962
|
+
* @member {module:model/GraphTraversalInput.StartObjectNotHasRelationshipDirectionEnum} startObjectNotHasRelationshipDirection
|
|
963
|
+
*/
|
|
964
|
+
GraphTraversalInput.prototype['startObjectNotHasRelationshipDirection'] = undefined;
|
|
965
|
+
|
|
966
|
+
/**
|
|
967
|
+
* @member {module:model/GraphTraversalInput.EndObjectNotHasRelationshipDirectionEnum} endObjectNotHasRelationshipDirection
|
|
968
|
+
*/
|
|
969
|
+
GraphTraversalInput.prototype['endObjectNotHasRelationshipDirection'] = undefined;
|
|
970
|
+
|
|
971
|
+
/**
|
|
972
|
+
* @member {module:model/GraphTraversalInput} appendTo
|
|
973
|
+
*/
|
|
974
|
+
GraphTraversalInput.prototype['appendTo'] = undefined;
|
|
975
|
+
|
|
976
|
+
/**
|
|
977
|
+
* @member {module:model/GraphTraversalInput} unionWith
|
|
978
|
+
*/
|
|
979
|
+
GraphTraversalInput.prototype['unionWith'] = undefined;
|
|
980
|
+
|
|
981
|
+
/**
|
|
982
|
+
* @member {module:model/GraphTraversalInput} intersectionWith
|
|
983
|
+
*/
|
|
984
|
+
GraphTraversalInput.prototype['intersectionWith'] = undefined;
|
|
985
|
+
|
|
986
|
+
/**
|
|
987
|
+
* @member {Boolean} shortestPath
|
|
988
|
+
*/
|
|
989
|
+
GraphTraversalInput.prototype['shortestPath'] = undefined;
|
|
990
|
+
|
|
991
|
+
/**
|
|
992
|
+
* @member {Number} minPathLength
|
|
993
|
+
*/
|
|
994
|
+
GraphTraversalInput.prototype['minPathLength'] = undefined;
|
|
995
|
+
|
|
996
|
+
/**
|
|
997
|
+
* @member {Number} maxPathLength
|
|
998
|
+
*/
|
|
999
|
+
GraphTraversalInput.prototype['maxPathLength'] = undefined;
|
|
1000
|
+
|
|
1001
|
+
/**
|
|
1002
|
+
* @member {Number} startIndex
|
|
1003
|
+
*/
|
|
1004
|
+
GraphTraversalInput.prototype['startIndex'] = undefined;
|
|
1005
|
+
|
|
1006
|
+
/**
|
|
1007
|
+
* @member {Number} count
|
|
1008
|
+
*/
|
|
1009
|
+
GraphTraversalInput.prototype['count'] = undefined;
|
|
1010
|
+
|
|
1011
|
+
/**
|
|
1012
|
+
* Allowed values for the <code>direction</code> property.
|
|
1013
|
+
* @enum {String}
|
|
1014
|
+
* @readonly
|
|
1015
|
+
*/
|
|
1016
|
+
GraphTraversalInput['DirectionEnum'] = {
|
|
1017
|
+
/**
|
|
1018
|
+
* value: "INCOMING"
|
|
1019
|
+
* @const
|
|
1020
|
+
*/
|
|
1021
|
+
"INCOMING": "INCOMING",
|
|
1022
|
+
/**
|
|
1023
|
+
* value: "OUTGOING"
|
|
1024
|
+
* @const
|
|
1025
|
+
*/
|
|
1026
|
+
"OUTGOING": "OUTGOING",
|
|
1027
|
+
/**
|
|
1028
|
+
* value: "BOTH"
|
|
1029
|
+
* @const
|
|
1030
|
+
*/
|
|
1031
|
+
"BOTH": "BOTH"
|
|
1032
|
+
};
|
|
1033
|
+
|
|
1034
|
+
/**
|
|
1035
|
+
* Allowed values for the <code>startObjectHasRelationshipDirection</code> property.
|
|
1036
|
+
* @enum {String}
|
|
1037
|
+
* @readonly
|
|
1038
|
+
*/
|
|
1039
|
+
GraphTraversalInput['StartObjectHasRelationshipDirectionEnum'] = {
|
|
1040
|
+
/**
|
|
1041
|
+
* value: "INCOMING"
|
|
1042
|
+
* @const
|
|
1043
|
+
*/
|
|
1044
|
+
"INCOMING": "INCOMING",
|
|
1045
|
+
/**
|
|
1046
|
+
* value: "OUTGOING"
|
|
1047
|
+
* @const
|
|
1048
|
+
*/
|
|
1049
|
+
"OUTGOING": "OUTGOING",
|
|
1050
|
+
/**
|
|
1051
|
+
* value: "BOTH"
|
|
1052
|
+
* @const
|
|
1053
|
+
*/
|
|
1054
|
+
"BOTH": "BOTH"
|
|
1055
|
+
};
|
|
1056
|
+
|
|
1057
|
+
/**
|
|
1058
|
+
* Allowed values for the <code>endObjectHasRelationshipDirection</code> property.
|
|
1059
|
+
* @enum {String}
|
|
1060
|
+
* @readonly
|
|
1061
|
+
*/
|
|
1062
|
+
GraphTraversalInput['EndObjectHasRelationshipDirectionEnum'] = {
|
|
1063
|
+
/**
|
|
1064
|
+
* value: "INCOMING"
|
|
1065
|
+
* @const
|
|
1066
|
+
*/
|
|
1067
|
+
"INCOMING": "INCOMING",
|
|
1068
|
+
/**
|
|
1069
|
+
* value: "OUTGOING"
|
|
1070
|
+
* @const
|
|
1071
|
+
*/
|
|
1072
|
+
"OUTGOING": "OUTGOING",
|
|
1073
|
+
/**
|
|
1074
|
+
* value: "BOTH"
|
|
1075
|
+
* @const
|
|
1076
|
+
*/
|
|
1077
|
+
"BOTH": "BOTH"
|
|
1078
|
+
};
|
|
1079
|
+
|
|
1080
|
+
/**
|
|
1081
|
+
* Allowed values for the <code>startObjectNotHasRelationshipDirection</code> property.
|
|
1082
|
+
* @enum {String}
|
|
1083
|
+
* @readonly
|
|
1084
|
+
*/
|
|
1085
|
+
GraphTraversalInput['StartObjectNotHasRelationshipDirectionEnum'] = {
|
|
1086
|
+
/**
|
|
1087
|
+
* value: "INCOMING"
|
|
1088
|
+
* @const
|
|
1089
|
+
*/
|
|
1090
|
+
"INCOMING": "INCOMING",
|
|
1091
|
+
/**
|
|
1092
|
+
* value: "OUTGOING"
|
|
1093
|
+
* @const
|
|
1094
|
+
*/
|
|
1095
|
+
"OUTGOING": "OUTGOING",
|
|
1096
|
+
/**
|
|
1097
|
+
* value: "BOTH"
|
|
1098
|
+
* @const
|
|
1099
|
+
*/
|
|
1100
|
+
"BOTH": "BOTH"
|
|
1101
|
+
};
|
|
1102
|
+
|
|
1103
|
+
/**
|
|
1104
|
+
* Allowed values for the <code>endObjectNotHasRelationshipDirection</code> property.
|
|
1105
|
+
* @enum {String}
|
|
1106
|
+
* @readonly
|
|
1107
|
+
*/
|
|
1108
|
+
GraphTraversalInput['EndObjectNotHasRelationshipDirectionEnum'] = {
|
|
1109
|
+
/**
|
|
1110
|
+
* value: "INCOMING"
|
|
1111
|
+
* @const
|
|
1112
|
+
*/
|
|
1113
|
+
"INCOMING": "INCOMING",
|
|
1114
|
+
/**
|
|
1115
|
+
* value: "OUTGOING"
|
|
1116
|
+
* @const
|
|
1117
|
+
*/
|
|
1118
|
+
"OUTGOING": "OUTGOING",
|
|
1119
|
+
/**
|
|
1120
|
+
* value: "BOTH"
|
|
1121
|
+
* @const
|
|
1122
|
+
*/
|
|
1123
|
+
"BOTH": "BOTH"
|
|
1124
|
+
};
|
|
1125
|
+
var _default = exports["default"] = GraphTraversalInput;
|