-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathremote-schema.graphql
5364 lines (4937 loc) · 142 KB
/
remote-schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file was generated based on ".graphqlconfig". Do not edit manually.
schema {
query: Query
mutation: Mutation
}
"""
@union
Match can either be a custom key (string) or a direct property of some DataMap
"""
union ConditionMatch = CustomMatch | PlatformDataMap
"@union"
union DataMapValueEntity = DataMapObject | DataMapObjects | DataMapValueContainer | DataMapValueContainerArray
"@union"
union DefaultValue = DefaultValueContainer | DefaultValueContainerArray
"""
@union
Can either be a `CustomEvent` or `PlatformEvent`. See `Event`
"""
union EventType = CustomEvent | PlatformEvent
"@union"
union GQLScalarBox = BooleanArrayBox | BooleanBox | DateArrayBox | DateBox | EmptyArrayBox | FloatArrayBox | FloatBox | IntArrayBox | IntBox | StringArrayBox | StringBox
"@model"
union Session = TempSession | UserSession
"@model"
type Action {
"`DataMap`'s that implements the `PlatformDataMap` of the connected `PlatformAction`"
data_maps: [DataMap!]!
"`Action` ID"
id: ID!
"`Action` name"
name: String!
"`PlatformAction` that this `Action` implements"
platform_action: PlatformAction!
}
"@model"
type ActionGroup {
"`Action`'s linked to this `ActionGroup`"
actions: [Action!]!
"Distribution value. -1 = Not distributed. Value is between -1 and 1000 inclusive."
distribution: Int!
"`ActionGroup` ID"
id: ID!
"If the distribution of this `ActionGroup` is locked"
is_locked: Boolean!
"`ActionGroup` name"
name: String!
}
"@model"
type ActionGroupDistribution {
"`ActionGroupDistribution` distribution type (see `ActionGroupDistributionType`)"
action_group_distribution_type: ActionGroupDistributionType!
"`ActionGroup`'s associated with this `ActionGroupDistribution`"
action_groups: [ActionGroup!]!
"Date the action group distribution was created"
created_at: DateTime!
"`ActionGroupDistribution` ID"
id: ID!
"`ActionGroupDistribution` name"
name: String!
"Type of entity this model is bound to"
parent_type: RevisionEntityParentType!
"Revision"
revision: Revision!
"Date the action group distribution was last updated"
updated_at: DateTime!
}
"""
@model
App is the container for your Tag Revisions and connected Platforms. This model is not under revision control as it is layer above Revisions.
"""
type App {
"All the platforms that a user has connected to (installed on) the `App`. The is the master connected list that will appear in revised models."
app_platforms: [AppPlatform!]!
"Average session duration"
average_session_duration_stats(query_options: AppQueryOptions!): IntResponse!
"Bounce ratio"
bounce_ratio_stats(query_options: AppQueryOptions!): FloatResponse!
"Browsers"
browser_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"Countries"
country_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"Date the `App` was created"
created_at: DateTime!
"Devices"
device_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"The domain name of the `App`"
domain: String!
"Entry Pages"
entry_page_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"Environments connected to the `App`. Environments are used to create a fixed deployment of a Revision"
environments: [Environment!]!
"Event Groups"
event_group_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"Event request stats"
event_request_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"Events"
event_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"Exit Pages"
exit_page_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"ID of the `App`"
id: ID!
"Name of the Application"
name: String!
"Operating Systems"
operating_system_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"Pages"
page_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"Referrers"
referrer_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"Referrer TLDs"
referrer_tld_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"Revisions linked to the `App`. All `App` entities such as `Tag`, `RuleGroup`, `Rule` etc. sit under a revisioning system."
revisions: [Revision!]!
"The `TagManagerAccount` that contains the `App`"
tag_manager_account: TagManagerAccount!
"The `AppType` associated with this App. Please note that currently on WEB is supported. MOBILE_APP will be introduced soon!"
type: AppType!
"Date the `App` was last updated"
updated_at: DateTime!
"UTM Campaigns"
utm_campaign_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"UTM Mediums"
utm_medium_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"UTM Sources"
utm_source_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
}
"@type"
type AppGroupingCount {
event_count: Int!
key: String!
user_count: Int!
}
"@type"
type AppGroupingCountsResponse {
from: DateTime!
result: [AppGroupingCount!]!
to: DateTime!
}
"@model"
type AppPlatform {
"The date the `AppPlatform` was created at"
created_at: DateTime!
"`Platform` that is currently linked to this `AppPlatform`"
platform: Platform!
"The date the `AppPlatform` was last updated at"
updated_at: DateTime!
}
"""
@model
The `AppPlatformRevision` model holds the relationship between `Revision` and `PlatformRevision` with respect to the `App`. A `Revision` is therefore tied to one or more `PlatformRevision`s although only one `PlatformRevision` per `Platform`
"""
type AppPlatformRevision {
"The date the `AppPlatformRevision` was created at"
created_at: DateTime!
"`AppPlatformRevision` ID"
id: ID!
"`PlatformRevision` that is currently linked to this `AppPlatformRevision`"
platform_revision: PlatformRevision!
"`DataMap` that implements platform settings and currently attached to this `AppPlatformRevision`"
platform_settings: [DataMap!]!
"The date the `AppPlatformRevision` was last updated at"
updated_at: DateTime!
}
"@model"
type Audit {
"Action Preformed"
action: AuditAction!
"Optional user comments linked to this operation"
comments: String
"Models directly connected to (or influenced by) this operation"
connected_models: [OperationConnectedModel!]!
"The date the `Audit` was created"
created_at: DateTime!
"Unique audit id for this operation"
id: ID!
"Method in which the action was performed"
method: GQLMethod!
"Name of the model"
model: String!
"Entity on which the operation was performed"
model_id: ID!
"Model's persisting id"
model_persisting_id: String!
"Operation owner"
owner: OperationOwner!
"Model extends from"
parent_model_ids: [ID!]!
"Person performing the operation, can be undefined if the system has performed the operation instead"
user: OrgUser
}
"@type"
type BigQueryDateTime {
value: String!
}
"""
@type
Used as a container object
"""
type BooleanArrayBox {
"Represents a list of booleans"
ba: [Boolean!]!
}
"""
@type
Used as a container object
"""
type BooleanBox {
"Represents a single boolean value"
b: Boolean!
}
"@model"
type ConditionRule {
"`ConditionRule` ID"
id: ID!
"`ConditionRule` type, see `ConditionMatch` enum."
match: ConditionMatch!
"Match condition, see `ConditionType` enum."
match_condition: ConditionType!
"Match key (used on object types)"
match_key: String
"Match value (see `DataMapValue`), the value to match againt data property key specificed by `ConditionMatch`."
match_value: DataMapValue!
"`ConditionRule` name"
name: String!
"The `PlatformDataContainer` to match against"
platform_data_container: PlatformDataContainer!
}
"@model"
type Config {
"A list of supported `ActionGroupDistribution` types"
action_group_distribution_types: [StringMap!]!
"A list of supported `App` types"
app_types: [StringMap!]!
"A list of supported condition types, for use with `ConditionRule`"
condition_types: [StringMap!]!
"A list of consent purposes"
consent_purposes: [ConsentPurpose!]!
"A list of consent vendors"
consent_vendors: [ConsentVendor!]!
"A list of core actions"
core_actions: [CoreElementDescription]!
"A list of core data containers"
core_data_containers: [CoreElementDescription]!
"A list of core events"
core_events: [CoreElementDescription]!
"A list of supported countries"
countries: [StringMap!]!
"A list of Data Manager Products"
data_manager_products: [DataManagerProduct!]!
"A list of supported input types, for use with `PlatformDataMap`"
input_types: [StringMap!]!
"A list of Tag Manager Products"
tag_manager_products: [TagManagerProduct!]!
"A list of supported `Tag` types"
tag_types: [StringMap!]!
"A list of supported time zones"
time_zones: [StringMap!]!
}
"@model"
type ConsentPurpose {
"Consent Purpose ID"
id: Int!
"Consent Purpose Name"
name: String!
}
"@model"
type ConsentVendor {
"Consent Vendor ID"
id: Int!
"Consent Vendor Name"
name: String!
}
"@model"
type CoreElementDataMapDescription {
default_value: String!
description: String!
is_required: String!
name: String!
var_type: String!
}
"@model"
type CoreElementDescription {
description: String!
inputs: [CoreElementDataMapDescription]!
name: String!
}
"""
@type
A container for custom event name
"""
type CustomEvent {
"The name of the event to listen for."
custom_name: String!
}
"""
@type
A custom match container
"""
type CustomMatch {
"The data key to match against"
custom_key: String!
}
"""
@model
The Data Manager Account is linked to directly to an organisation. It holds the plan type (account_type) and all the ingest endpoints linked to this Org.
"""
type DataManagerAccount {
"Date the `DataManagerAccount` was created"
created_at: DateTime!
"`DataManagerAccount` ID"
id: ID!
"A list of `IngestEndpoint`s linked to the `DataManagerAccount`"
ingest_endpoints: [IngestEndpoint!]!
"If the account is in a trial period"
is_trial: Boolean!
"`Org` that owns this `DataManagerAccount`"
org: Org!
"The current product id associated with this account. If this is free plan or managed, this will not be provided"
stripe_product_id: String
"If the free trial is expired"
trial_expired: Boolean!
"The amount of days until the trial expires"
trial_expires_in: Int!
"Date the `DataManagerAccount` was last updated"
updated_at: DateTime!
"Account usage"
usage: [DataManagerAccountUsage!]!
}
"@model"
type DataManagerAccountUsage {
bytes: Int!
day: DateTime!
requests: Int!
}
"@model"
type DataManagerProduct {
amount: Int!
gbs: Float!
id: String!
name: String!
requests: Int!
}
"@model"
type DataMap {
"`DataMap` ID"
id: ID!
"`DataMap` key"
key: String!
"`DataMap` value"
value: DataMapValueEntity
"`DataMap` variable type (string, int, boolean, array of strings, object etc.)"
var_type: VarType!
}
"""
@type
Used as a container object
"""
type DataMapObject {
"Contains a list of `DataMap`"
object: [DataMap!]!
}
"""
@type
Used as a container object
"""
type DataMapObjects {
"Contains a list of lists of `DataMap`. This implements repeated object patterns."
objects: [[DataMap!]!]!
}
"""
@type
Used as a container object
"""
type DataMapValueContainer {
"Contains a `DataMapValue`"
value: DataMapValue
}
"""
@type
Used as a container object
"""
type DataMapValueContainerArray {
"Contains a list of `DataMapValue`"
values: [DataMapValue!]
}
"""
@type
Used as a container object
"""
type DateArrayBox {
"Represents a list of dates"
da: [DateTime!]!
}
"""
@type
Used as a container object
"""
type DateBox {
"Represents a single date value"
d: DateTime!
}
"@type"
type DefaultValueContainer {
value: DataMapValue
}
"@type"
type DefaultValueContainerArray {
values: [DataMapValue!]
}
"""
@type
Used as a container object
"""
type EmptyArrayBox {
"Represents an empty array"
ea: Boolean
}
"@model"
type Environment {
"`Environment`'s CNAME"
cname: String!
"The date the `Environment` was created at"
created_at: DateTime!
"`Environment`'s custom domain name if configured"
custom_domain: String
"Environment variables associated with this `Environment`"
environment_variables: [EnvironmentVariable!]!
"Event request stats - Pleae note that environment is automatically set in the filter options"
event_request_stats(query_options: AppQueryOptions!): AppGroupingCountsResponse!
"`Environment` ID"
id: ID!
"`Environment`'s install domain used to embed in web page"
install_domain: String!
"`Environment` name"
name: String!
"`Revision` currently attached to the `Environment`"
revision: Revision!
"The date the `Environment` was last updated at"
updated_at: DateTime!
"`Environment` URL"
url: String
}
"@type"
type EnvironmentVariable {
key: String!
value: String!
}
"@model"
type Event {
"The period after which the event state should be cleared. -1 = Inactive, 0 = Immidately, > 0, after some time specified in milliseconds. This useful for events that need to be re-triggered within some period of time to pass the check stage."
clear_state_ms: Int!
"`DataMap`'s that implements the `PlatformDataMap` of the connected `PlatformEvent`"
data_maps: [DataMap!]!
"Either a `CustomEvent` or `PlatformEvent`"
event: EventType!
"The `Event` ID"
id: ID!
"The `Event` name"
name: String!
}
"""
@type
Used as a container object
"""
type FloatArrayBox {
"Represents a list of floats"
fa: [Float!]!
}
"""
@type
Used as a container object
"""
type FloatBox {
"Represents a single float value"
f: Float!
}
"@type"
type FloatResponse {
from: DateTime!
result: Float!
to: DateTime!
}
"@type"
type GroupingCount {
count: Int!
key: String!
}
"@type"
type GroupingCountsResponse {
from: DateTime!
result: [GroupingCount!]!
to: DateTime!
}
"""
@model
This entity sits under the `DataManagerAccount` entity. It links all the revisions and environments associated with it and also provides a basic usage summary.
"""
type IngestEndpoint {
"Byte stats"
byte_stats(query_options: IngestQueryOptions!): GroupingCountsResponse!
"Date the `IngestEndpoint` was created"
created_at: DateTime!
"The `DataManagerAccount` that contains the `IngestEndpoint`"
data_manager_account: DataManagerAccount!
"ID of the `IngestEndpoint`"
id: ID!
"The `IngestEndpointEnvironment`s owned by the `IngestEndpoint`"
ingest_endpoint_environments: [IngestEndpointEnvironment!]!
"The `IngestEndpointRevision`s connected to the `IngestEndpoint`"
ingest_endpoint_revisions: [IngestEndpointRevision!]!
"Name of the `IngestEndpoint`"
name: String!
"Request stats"
request_stats(query_options: IngestQueryOptions!): GroupingCountsResponse!
"Date the `IngestEndpoint` was last updated"
updated_at: DateTime!
}
"""
@model
This entity maps key-value properties together. It is able to hold child key-value pairs in a recursive structure. This is used directly by the `IngestEndpoint` to hold all the key-value mappings required to structure the desired payload.
"""
type IngestEndpointDataMap {
"If the variable type (see `VarType`) has been specified as an object or array of objects, then this contains the child property definitions"
child_ingest_endpoint_data_maps: [IngestEndpointDataMap!]!
"The default value. If no input is provided for this property, then the default value will be applied automatically"
default_value: DefaultValue
"ID of the `IngestEndpointDataMap`"
id: ID!
"Whether or not the property is optional or not"
is_optional: Boolean!
"Key (Property Key) of the `IngestEndpointDataMap`"
key: String!
"A list of validation rules associated with this `IngestEndpointDataMap`."
validation_rules: [IngestEndpointDataMapValidation!]
"Variable type (see `VarType`)"
var_type: String!
}
"@model"
type IngestEndpointDataMapValidation {
"Input value to check against"
input_value: DataMapValue
"Validation type"
type: ValidationType!
}
"""
@model
This entity holds the nessessary configuration to configure the `IngestEndpoint` for deployment. Please note that we are unable to retrieve cert_pem and key_pem in this model as a security precaution. There is no API access to our encrypted vault where we hold secure information.
"""
type IngestEndpointEnvironment {
"Byte stats - Please note that environment is automatically applied in the filter"
byte_stats(query_options: IngestQueryOptions!): GroupingCountsResponse!
"`IngestEndpointEnvironment`'s CNAME"
cname: String!
"A hint of the credentials currently in use by the `IngestEndpointEnvironment`. For security reasons we don't enable to full retrival of this information via the API. It does not persist in our database or servers and remains in our vault."
config_hint: String!
"Date the `IngestEndpointEnvironment` was created"
created_at: DateTime!
"A custom domain name associated with this `IngestEndpointEnvironment`"
custom_domain: String
"ID of the `IngestEndpointEnvironment`"
id: ID!
"The `IngestEndpointRevision` currently bound to the `IngestEndpointEnvironment`"
ingest_endpoint_revision: IngestEndpointRevision!
"`IngestEndpointEnvironment`'s install domain used to push data to"
install_domain: String!
"Name of the `IngestEndpointEnvironment`"
name: String!
"Request stats - Please note that environment is automatically applied in the filter"
request_stats(query_options: IngestQueryOptions!): GroupingCountsResponse!
"The storage provider used by the `IngestEndpointEnvironment` to store ingested data"
storage_provider: StorageProvider!
"Date the `IngestEndpointEnvironment` last updated"
updated_at: DateTime!
}
"""
@model
This entity contains a set of data maps (`IngestEndpointDataMap`). These describe the supported payload structure.
"""
type IngestEndpointRevision {
"Byte stats - Please note that revision is automatically applied in the filter"
byte_stats(query_options: IngestQueryOptions!): GroupingCountsResponse!
"Date the `IngestEndpointRevision` was created"
created_at: DateTime!
"ID of the `IngestEndpointRevision`"
id: ID!
"The `IngestEndpoint` that the `IngestEndpointRevision` belongs to"
ingest_endpoint: IngestEndpoint!
"The `IngestEndpointDataMaps`s that construct the payload (key => value) configuration for the `IngestEndpointRevision`"
ingest_endpoint_data_maps: [IngestEndpointDataMap!]!
"The `IngestEndpointRevision` has been finalised and locked to prevent further changes"
locked: Boolean!
"Name of the `IngestEndpointRevision`"
name: String!
"Request stats - Please note that revision is automatically applied in the filter"
request_stats(query_options: IngestQueryOptions!): GroupingCountsResponse!
"Date the `IngestEndpointRevision` was last updated"
updated_at: DateTime!
}
"""
@type
Used as a container object
"""
type IntArrayBox {
"Represents a list of integers"
ia: [Int!]!
}
"""
@type
Used as a container object
"""
type IntBox {
"Represents a single integer value"
i: Int!
}
"@type"
type IntResponse {
from: DateTime!
result: Int!
to: DateTime!
}
"@model"
type Invite {
created_at: DateTime!
email: String!
id: ID!
org: Org!
org_permissions: OrgUserPermissions!
updated_at: DateTime!
}
"""
@type
When a model in the system is deleted, we return this acknowledgement structure to better inform of what has been deleted.
"""
type ModelDeleteAcknowledgement {
"The ID of the model that has been deleted"
id: ID!
"Name of the model that the entity belonged to"
model: String!
"The name of the model that has been deleted"
name: String!
}
type Mutation {
"""
@bound=Org
Accept a user invite to join an `Org`
"""
acceptInvite(orgAcceptInviteInput: OrgAcceptInviteInput!): Boolean!
"""
@bound=Org
Subscribe To TagManager
This will generate a new link that the user can follow to checkout if
it has no subscription yet, it will return null otherwise.
"""
accountSubscribe(accountSubscribeInput: AccountSubscribeInput): String
"""
@bound=Org
Cancel subscription
"""
accountUnsubscribe(accountUnsubscribeInput: AccountUnsubscribeInput): Boolean!
"""
@bound=IngestEndpointDataMap
Add a new child `IngestEndpointDataMap` to a parent `IngestEndpointDataMap`
"""
addChildrenIngestEndpointDataMaps(addChildrenIngestEndpointDataMapsInput: AddChildrenIngestEndpointDataMapsInput): [IngestEndpointDataMap!]!
"""
@bound=Environment
Add an environment variable
"""
addEnvironmentVariable(environmentVariableAddInput: EnvironmentVariableAddInput!): Boolean!
"""
@bound=IngestEndpointRevision
Add one or more `IngestEndpointDataMap`s to the `IngestEndpointRevision`.
"""
addIngestEndpointDataMaps(ingestEndpointAddIngestEndpointDataMapsInput: IngestEndpointAddIngestEndpointDataMapsInput): [IngestEndpointDataMap!]!
"""
@bound=Org
Cancel a user invite to join an `Org`
"""
cancelInvite(orgCancelInviteInput: OrgCancelInviteInput!): Boolean!
"""
@bound=User
Change currently logged `User`'s password
"""
changePassword(changePasswordInput: ChangePasswordInput!): Boolean!
"@bound=User"
completeSignUp(completeSignUpInput: CompleteSignUpInput!): UserSessionLink!
"""
@bound=Action
Create a new `Action`.
"""
createAction(actionCreateInput: ActionCreateInput!): Action!
"""
@bound=ActionGroup
Create a new `ActionGroup`. `ActionGroupDistribution` ID is required here to ensure `ActionGroup` is placed inside the correct `ActionGroupDistribution`
"""
createActionGroup(actionGroupCreateInput: ActionGroupCreateInput!): ActionGroup!
"""
@bound=ActionGroupDistribution
Create a new `ActionGroupDistribution`. `Rule` ID is required here to ensure `ActionGroupDistribution` is placed inside the correct version
"""
createActionGroupDistribution(actionGroupDistributionCreateInput: ActionGroupDistributionCreateInput!): ActionGroupDistribution!
"""
@bound=App
Create a new `App`.
"""
createApp(appCreateInput: AppCreateInput!): App!
"""
@bound=ConditionRule
Create a new `ConditionRule`. `Trigger` ID is required here to ensure `ConditionRule` is placed inside the correct `Trigger`
"""
createConditionRule(conditionRuleCreateInput: ConditionRuleCreateInput!): Rule!
"""
@bound=Environment
Create a new `Environment`.
"""
createEnvironment(environmentCreateInput: EnvironmentCreateInput!): Environment!
"""
@bound=Event
Create a new `Event`.
"""
createEvent(eventCreateInput: EventCreateInput!): Event!
"""
@bound=IngestEndpoint
Create a new `IngestEndpoint`.
"""
createIngestEndpoint(ingestEndpointCreateInput: IngestEndpointCreateInput!): IngestEndpoint!
"""
@bound=IngestEndpointEnvironment
Create a new `IngestEndpointEnvironment`.
"""
createIngestEndpointEnvironment(ingestEndpointEnvironmentCreateInput: IngestEndpointEnvironmentCreateInput!): IngestEndpointEnvironment!
"""
@bound=PlatformRevision
Create a new `PlatformRevision` from the input spec.
"""
createNewPlatformRevision(newRevisionInput: NewRevisionInput!): PlatformRevision!
"""
@bound=Org
Create a new `Org`
"""
createOrg(orgCreateInput: OrgCreateInput!): Org!
"""
@bound=Platform
Create a new `Platform`.
"""
createPlatform(platformCreateInput: PlatformCreateInput!): Platform!
"""
@bound=Rule
Create a new `Rule`. `RuleGroup` ID is required here to ensure `Rule` is placed inside the correct version
"""
createRule(ruleCreateInput: RuleCreateInput!): Rule!
"""
@bound=RuleGroup
Create a new `RuleGroup`. `Tag` ID is required here to ensure `RuleGroup` is placed inside the correct version
"""
createRuleGroup(ruleGroupCreateInput: RuleGroupCreateInput!): RuleGroup!
"""
@bound=Tag
Create a new `Tag`. `Revision` ID is required here to ensure `Tag` is placed inside the correct version
"""
createTag(tagCreateInput: TagCreateInput!): Tag!
"""
@bound=PlatformAction
Create a new templated `PlatformAction`
"""
createTemplatedAction(platformActionTemplatedCreateInput: PlatformActionTemplatedCreateInput!): PlatformAction!
"""
@bound=Trigger
Create a new `Trigger`
"""
createTrigger(triggerCreateInput: TriggerCreateInput!): Trigger!
"""
@bound=Org
Decline a user invite to join an `Org`
"""
declineInvite(orgDeclineInviteInput: OrgDeclineInviteInput!): Boolean!
"""
@bound=Action
Delete an `Action` and its children.
"""
deleteAction(actionDeleteInput: ActionDeleteInput!): [ModelDeleteAcknowledgement!]!
"""
@bound=ActionGroup
Delete a `ActionGroup` and its children.
"""
deleteActionGroup(actionGroupDeleteInput: ActionGroupDeleteInput!): [ModelDeleteAcknowledgement!]!
"""
@bound=ActionGroupDistribution
Delete a `ActionGroupDistribution` and its children.
"""
deleteActionGroupDistribution(actionGroupDistributionDeleteInput: ActionGroupDistributionDeleteInput!): [ModelDeleteAcknowledgement!]!
"""
@bound=App
Delete a `App` and its children.
"""
deleteApp(appDeleteInput: AppDeleteInput!): Boolean!
"""
@bound=ConditionRule
Delete a `ConditionRule` and its children.
"""
deleteConditionRule(conditionRuleDeleteInput: ConditionRuleDeleteInput!): [ModelDeleteAcknowledgement!]!
"""
@bound=Environment
Delete an `Environment`.
"""
deleteEnvironment(environmentDeleteInput: EnvironmentDeleteInput!): Boolean!
"""
@bound=Environment
Delete an environment variable
"""
deleteEnvironmentVariable(environmentVariableDeleteInput: EnvironmentVariableDeleteInput!): Boolean!
"""
@bound=Event
Delete an `Event` and its children.
"""
deleteEvent(eventDeleteInput: EventDeleteInput!): [ModelDeleteAcknowledgement!]!
"""
@bound=IngestEndpoint
Delete a `IngestEndpoint` and its children.
"""
deleteIngestEndpoint(ingestEndpointDeleteInput: IngestEndpointDeleteInput!): Boolean!
"""
@bound=IngestEndpointDataMap
Delete an `IngestEndpointDataMap` and all child relationships beneath it
"""
deleteIngestEndpointDataMap(deleteChildIngestEndpointDataMapInput: DeleteChildIngestEndpointDataMapInput): [ModelDeleteAcknowledgement!]!
"""
@bound=IngestEndpointEnvironment
Delete a `IngestEndpointEnvironment`.
"""
deleteIngestEndpointEnvironment(ingestEndpointEnvironmentDeleteInput: IngestEndpointEnvironmentDeleteInput!): Boolean!
"""
@bound=User
Delete currently logged `User` (Account removal)
"""
deleteMe: Boolean!
"""
@bound=Org
Delete an `Org` and all child entities
"""
deleteOrg(orgDeleteInput: OrgDeleteInput!): Boolean!
"""
@bound=Rule
Delete a `Rule` and its children.
"""
deleteRule(ruleDeleteInput: RuleDeleteInput!): [ModelDeleteAcknowledgement!]!
"""
@bound=RuleGroup
Delete a `RuleGroup` and its children.
"""
deleteRuleGroup(ruleGroupDeleteInput: RuleGroupDeleteInput!): [ModelDeleteAcknowledgement!]!
"""
@bound=Tag
Delete a `Tag` and its children.
"""
deleteTag(tagDeleteInput: TagDeleteInput!): [ModelDeleteAcknowledgement!]!
"""
@bound=PlatformAction
Delete a templated `PlatformAction`
"""
deleteTemplatedAction(platformActionTemplatedDeleteInput: PlatformActionTemplatedDeleteInput!): Boolean!
"""
@bound=Trigger
Delete a `Trigger` and its children.
"""
deleteTrigger(triggerDeleteInput: TriggerDeleteInput!): [ModelDeleteAcknowledgement!]!
"@bound=User"
disableTwoFactorAuth(twoFactorAuthDisableInput: TwoFactorAuthDisableInput!): Boolean!
"""
@bound=UserNotification