-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgithub-enterprise-server.sgnl.yaml
1515 lines (1486 loc) · 45.2 KB
/
github-enterprise-server.sgnl.yaml
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
# GitHub Configuration YAML
displayName: "GitHub"
icon: "PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjY0IiBoZWlnaHQ9IjY0IiBmaWxsPSIjMjQyOTJFIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzIgOEMyNi4yOTY3IDcuOTk0MiAyMC43Nzc3IDEwLjAxOTYgMTYuNDMyMSAxMy43MTMzQzEyLjA4NjUgMTcuNDA3IDkuMTk4MzcgMjIuNTI3NiA4LjI4NTIxIDI4LjE1NzNDNy4zNzIwNCAzMy43ODcgOC40OTM1NiAzOS41NTc5IDExLjQ0ODggNDQuNDM1OUMxNC40MDQgNDkuMzEzOCAxOC45OTk4IDUyLjk3OTkgMjQuNDEyNSA1NC43NzcyQzI1LjYyMDYgNTQuOTk4MSAyNi4wNDc5IDU0LjI0NjggMjYuMDQ3OSA1My42MTMzQzI2LjA0NzkgNTIuOTc5NyAyNi4wNDc5IDUxLjUzNTkgMjYuMDQ3OSA0OS41MzIyQzE5LjM0NDQgNTAuOTkwOCAxNy45MyA0Ni4zMDU3IDE3LjkzIDQ2LjMwNTdDMTcuNDg1MyA0NC44NTM3IDE2LjU0MDUgNDMuNjA2MSAxNS4yNjMzIDQyLjc4NDVDMTMuMDk3NiA0MS4zMTEyIDE1LjQ0MDEgNDEuMzExMiAxNS40NDAxIDQxLjMxMTJDMTYuMTk5MyA0MS40MTg1IDE2LjkyNDEgNDEuNjk3IDE3LjU1OTcgNDIuMTI1OUMxOC4xOTUzIDQyLjU1NDcgMTguNzI1IDQzLjEyMjUgMTkuMTA4NiA0My43ODY0QzE5LjQzNDYgNDQuMzc3NCAxOS44NzQxIDQ0Ljg5ODMgMjAuNDAxOSA0NS4zMTkyQzIwLjkyOTcgNDUuNzQgMjEuNTM1NCA0Ni4wNTI0IDIyLjE4NDIgNDYuMjM4NkMyMi44MzMgNDYuNDI0OCAyMy41MTIyIDQ2LjQ4MSAyNC4xODI4IDQ2LjQwNEMyNC44NTM1IDQ2LjMyNyAyNS41MDIzIDQ2LjExODQgMjYuMDkyIDQ1Ljc5QzI2LjE4NDUgNDQuNTc4IDI2LjcwNyA0My40MzkgMjcuNTY1MyA0Mi41NzgzQzIyLjIzMiA0MS45NzQyIDE2LjYzMzUgMzkuOTExNiAxNi42MzM1IDMwLjc5MTlDMTYuNTk2OSAyOC40MDk1IDE3LjQ3NzggMjYuMTA0MyAxOS4wOTM5IDI0LjM1MzZDMTguMzc0MSAyMi4yODIyIDE4LjQ1ODIgMjAuMDE2IDE5LjMyOTYgMTguMDAzN0MxOS4zMjk2IDE4LjAwMzcgMjEuMzQ4IDE3LjM1NTQgMjUuOTMgMjAuNDY0MUMyOS44NjQ1IDE5LjM4MzggMzQuMDE3NSAxOS4zODM4IDM3Ljk1MjEgMjAuNDY0MUM0Mi41MzQgMTcuMzU1NCA0NC41Mzc3IDE4LjAwMzcgNDQuNTM3NyAxOC4wMDM3QzQ1LjQyMTIgMTkuOTk0NyA0NS41MjY0IDIyLjI0NDYgNDQuODMyNCAyNC4zMDk0QzQ2LjQ0ODUgMjYuMDYwMiA0Ny4zMjk0IDI4LjM2NTMgNDcuMjkyOCAzMC43NDc3QzQ3LjI5MjggMzkuOTcwNSA0MS42Nzk1IDQxLjk4ODkgMzYuMzMxNSA0Mi41MzQxQzM2LjkwNDkgNDMuMTEwNSAzNy4zNDc3IDQzLjgwMzUgMzcuNjI5OSA0NC41NjYxQzM3LjkxMjEgNDUuMzI4NyAzOC4wMjcgNDYuMTQzMSAzNy45NjY4IDQ2Ljk1NEMzNy45NjY4IDUwLjE2NTcgMzcuOTY2OCA1Mi43NTg3IDM3Ljk2NjggNTMuNTM5NkMzNy45NjY4IDU0LjMyMDQgMzguMzk0MSA1NC45MjQ1IDM5LjYxNjkgNTQuNjg4OEM0NC45NjggNTIuODQ0MSA0OS40OTQ5IDQ5LjE2NzUgNTIuMzk4IDQ0LjMwODZDNTUuMzAxIDM5LjQ0OTcgNTYuMzkzMyAzMy43MjEgNTUuNDgyIDI4LjEzNDhDNTQuNTcwNiAyMi41NDg1IDUxLjcxNDIgMTcuNDY0MSA0Ny40MTc0IDEzLjc3OThDNDMuMTIwNiAxMC4wOTU1IDM3LjY1OTkgOC4wNDgzMSAzMiA4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg=="
description: "GitHub as a System of Record"
# Enterprise Cloud: api.github.com
# Enterprise Server: Use your own hostname
address: "{{Input Required}}"
defaultSyncFrequency: HOURLY
defaultSyncMinInterval: 1
defaultApiCallFrequency: SECONDLY
defaultApiCallMinInterval: 1
type: "GitHub-1.0.0"
# Example Config:
# {
# "enterpriseSlug": "your-enterprise-slug",
# "isEnterpriseCloud": true / false,
# "apiVersion": "v1"
# }
adapterConfig: "ewogICAgImVudGVycHJpc2VTbHVnIjogInt7SW5wdXQgUmVxdWlyZWR9fSIsCiAgICAiaXNFbnRlcnByaXNlQ2xvdWQiOiB0cnVlLAogICAgImFwaVZlcnNpb24iOiAie3tJbnB1dCBSZXF1aXJlZCBmb3IgUkVTVC1iYXNlZCBlbnRpdGllc319Igp9"
auth:
- bearer:
authToken: "Bearer {{Input Required}}"
entities:
# https://docs.github.com/en/graphql/reference/objects#organization
Organization:
displayName: Organization
externalId: Organization
description: Entity representing a GitHub Organization
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: id
type: String
indexed: true
uniqueId: true
attributeAlias: organizationId
- name: announcement
externalId: announcement
type: String
- name: announcementExpiresAt
externalId: announcementExpiresAt
type: DateTime
- name: announcementUserDismissible
externalId: announcementUserDismissible
type: Bool
- name: anyPinnableItems
externalId: anyPinnableItems
type: Bool
- name: archivedAt
externalId: archivedAt
type: DateTime
- name: createdAt
externalId: createdAt
type: DateTime
- name: databaseId
externalId: databaseId
type: Int64
- name: description
externalId: description
type: String
- name: email
externalId: email
type: String
- name: login
externalId: login
type: String
- name: isVerified
externalId: isVerified
type: Bool
- name: location
externalId: location
type: String
- name: name
externalId: name
type: String
- name: newTeamResourcePath
externalId: newTeamResourcePath
type: String
- name: pinnedItemsRemaining
externalId: pinnedItemsRemaining
type: Int64
- name: projectsResourcePath
externalId: projectsResourcePath
type: String
- name: resourcePath
externalId: resourcePath
type: String
- name: teamsResourcePath
externalId: teamsResourcePath
type: String
- name: twitterUsername
externalId: twitterUsername
type: String
- name: updatedAt
externalId: updatedAt
type: DateTime
- name: viewerCanAdminister
externalId: viewerCanAdminister
type: Bool
- name: viewerCanChangePinnedItems
externalId: viewerCanChangePinnedItems
type: Bool
- name: viewerCanCreateProjects
externalId: viewerCanCreateProjects
type: Bool
- name: viewerCanCreateRepositories
externalId: viewerCanCreateRepositories
type: Bool
- name: viewerCanCreateTeams
externalId: viewerCanCreateTeams
type: Bool
- name: viewerIsAMember
externalId: viewerIsAMember
type: Bool
# Attribute added in post-processing
- name: enterpriseId
externalId: enterpriseId
type: String
# https://docs.github.com/en/graphql/reference/objects#user
User:
displayName: User
externalId: User
description: User entity in GitHub.
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: id
type: String
indexed: true
uniqueId: true
attributeAlias: userId
- name: bio
externalId: bio
type: String
- name: company
externalId: company
type: String
- name: createdAt
externalId: createdAt
type: DateTime
- name: databaseId
externalId: databaseId
type: Int64
- name: email
externalId: email
type: String
- name: login
externalId: login
type: String
indexed: true
attributeAlias: userLogin
- name: isBountyHunter
externalId: isBountyHunter
type: Bool
- name: isCampusExpert
externalId: isCampusExpert
type: Bool
- name: isDeveloperProgramMember
externalId: isDeveloperProgramMember
type: Bool
- name: isEmployee
externalId: isEmployee
type: Bool
- name: isFollowingViewer
externalId: isFollowingViewer
type: Bool
- name: isHireable
externalId: isHireable
type: Bool
- name: isSiteAdmin
externalId: isSiteAdmin
type: Bool
- name: isViewer
externalId: isViewer
type: Bool
- name: location
externalId: location
type: String
- name: name
externalId: name
type: String
- name: pinnedItemsRemaining
externalId: pinnedItemsRemaining
type: Int64
- name: projectsResourcePath
externalId: projectsResourcePath
type: String
- name: resourcePath
externalId: resourcePath
type: String
- name: twitterUsername
externalId: twitterUsername
type: String
- name: updatedAt
externalId: updatedAt
type: DateTime
- name: viewerCanChangePinnedItems
externalId: viewerCanChangePinnedItems
type: Bool
- name: viewerCanCreateProjects
externalId: viewerCanCreateProjects
type: Bool
- name: viewerCanFollow
externalId: viewerCanFollow
type: Bool
- name: viewerIsFollowing
externalId: viewerIsFollowing
type: Bool
OrganizationUser:
displayName: OrganizationUser
externalId: OrganizationUser
description: Entity representing the metadata of a User entity in a GitHub Organization
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: uniqueId
type: String
indexed: true
uniqueId: true
- name: orgId
externalId: orgId
type: String
indexed: true
attributeAlias: orgUserOrgId
- name: userId
externalId: $.node.id
type: String
indexed: true
attributeAlias: orgUserId
- name: role
externalId: role
type: String
indexed: true
UserOrganizationVerifiedDomainEmails:
parent: OrganizationUser
displayName: UserOrganizationVerifiedDomainEmails
externalId: $.node.organizationVerifiedDomainEmails
description: Entity representing a GitHub user's organization verified domain emails
pageSize: 100
pagesOrderedById: false
attributes:
- name: email
externalId: email
type: String
indexed: true
uniqueId: true
# https://docs.github.com/en/graphql/reference/objects#team
Team:
displayName: Team
externalId: Team
description: Team entity in GitHub.
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: id
type: String
indexed: true
uniqueId: true
- name: combinedSlug
externalId: combinedSlug
type: String
- name: createdAt
externalId: createdAt
type: DateTime
- name: databaseId
externalId: databaseId
type: Int64
- name: description
externalId: description
type: String
- name: discussionsResourcePath
externalId: discussionsResourcePath
type: String
- name: editTeamResourcePath
externalId: editTeamResourcePath
type: String
- name: membersResourcePath
externalId: membersResourcePath
type: String
- name: name
externalId: name
type: String
- name: newTeamResourcePath
externalId: newTeamResourcePath
type: String
- name: repositoriesResourcePath
externalId: repositoriesResourcePath
type: String
- name: resourcePath
externalId: resourcePath
type: String
- name: slug
externalId: slug
type: String
- name: teamsResourcePath
externalId: teamsResourcePath
type: String
- name: updatedAt
externalId: updatedAt
type: DateTime
- name: viewerCanAdminister
externalId: viewerCanAdminister
type: Bool
- name: viewerCanSubscribe
externalId: viewerCanSubscribe
type: Bool
# Attributes added in post-processing
- name: enterpriseId
externalId: enterpriseId
type: String
- name: orgId
externalId: orgId
type: String
indexed: true
attributeAlias: teamOrgId
# TeamMember entity is for creating relationships between Users and Teams.
# TeamMember is a User entity type: https://docs.github.com/en/graphql/reference/objects#user
TeamMember:
parent: Team
displayName: TeamMember
externalId: $.members.edges
description: Entity representing the metadata of a User entity in a GitHub Team
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: $.node.id
type: String
indexed: true
uniqueId: true
attributeAlias: teamMemberId
# Note: Role represents the TeamMember's role on the team.
# https://docs.github.com/en/graphql/reference/enums#teammemberrole
- name: role
externalId: role
type: String
indexed: true
- name: login
externalId: $.node.login
type: String
indexed: true
attributeAlias: teamMemberLogin
# TeamRepository entity is for creating relationships between Repositories and Teams.
# TeamRepository is a Repository entity type: https://docs.github.com/en/graphql/reference/objects#repository
TeamRepository:
parent: Team
displayName: TeamRepository
externalId: $.repositories.edges
description: Entity representing the metadata of a Repository entity assigned to a GitHub Team
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: $.node.id
type: String
indexed: true
uniqueId: true
attributeAlias: teamRepositoryId
# Permission is the Team's permission level for this repository
# https://docs.github.com/en/graphql/reference/enums#repositorypermission
- name: permission
externalId: permission
type: String
indexed: true
- name: name
externalId: $.node.name
type: String
# https://docs.github.com/en/graphql/reference/objects#repository
Repository:
displayName: Repository
externalId: Repository
description: Entity representing a GitHub Repository
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: id
type: String
indexed: true
uniqueId: true
attributeAlias: repositoryId
- name: allowUpdateBranch
externalId: allowUpdateBranch
type: Bool
- name: archivedAt
externalId: archivedAt
type: DateTime
- name: autoMergeAllowed
externalId: autoMergeAllowed
type: Bool
- name: createdAt
externalId: createdAt
type: DateTime
- name: databaseId
externalId: databaseId
type: Int64
- name: deleteBranchOnMerge
externalId: deleteBranchOnMerge
type: Bool
- name: description
externalId: description
type: String
- name: diskUsage
externalId: diskUsage
type: Int64
- name: forkCount
externalId: forkCount
type: Int64
- name: forkingAllowed
externalId: forkingAllowed
type: Bool
- name: hasDiscussionsEnabled
externalId: hasDiscussionsEnabled
type: Bool
- name: hasIssuesEnabled
externalId: hasIssuesEnabled
type: Bool
- name: hasProjectsEnabled
externalId: hasProjectsEnabled
type: Bool
- name: hasVulnerabilityAlertsEnabled
externalId: hasVulnerabilityAlertsEnabled
type: Bool
- name: hasWikiEnabled
externalId: hasWikiEnabled
type: Bool
- name: isArchived
externalId: isArchived
type: Bool
- name: isBlankIssuesEnabled
externalId: isBlankIssuesEnabled
type: Bool
- name: isDisabled
externalId: isDisabled
type: Bool
- name: isEmpty
externalId: isEmpty
type: Bool
- name: isInOrganization
externalId: isInOrganization
type: Bool
- name: isFork
externalId: isFork
type: Bool
- name: isLocked
externalId: isLocked
type: Bool
- name: isMirror
externalId: isMirror
type: Bool
- name: isPrivate
externalId: isPrivate
type: Bool
- name: isSecurityPolicyEnabled
externalId: isSecurityPolicyEnabled
type: Bool
- name: isTemplate
externalId: isTemplate
type: Bool
- name: isUserConfigurationRepository
externalId: isUserConfigurationRepository
type: Bool
- name: mergeCommitAllowed
externalId: mergeCommitAllowed
type: Bool
- name: name
externalId: name
type: String
indexed: true
- name: nameWithOwner
externalId: nameWithOwner
type: String
indexed: true
- name: projectsResourcePath
externalId: projectsResourcePath
type: String
- name: pushedAt
externalId: pushedAt
type: DateTime
- name: rebaseMergeAllowed
externalId: rebaseMergeAllowed
type: Bool
- name: resourcePath
externalId: resourcePath
type: String
- name: squashMergeAllowed
externalId: squashMergeAllowed
type: Bool
- name: stargazerCount
externalId: stargazerCount
type: Int64
- name: tempCloneToken
externalId: tempCloneToken
type: String
- name: updatedAt
externalId: updatedAt
type: DateTime
- name: usesCustomOpenGraphImage
externalId: usesCustomOpenGraphImage
type: Bool
- name: viewerCanAdminister
externalId: viewerCanAdminister
type: Bool
- name: viewerCanCreateProjects
externalId: viewerCanCreateProjects
type: Bool
- name: viewerCanSubscribe
externalId: viewerCanSubscribe
type: Bool
- name: viewerCanUpdateTopics
externalId: viewerCanUpdateTopics
type: Bool
- name: viewerDefaultCommitEmail
externalId: viewerDefaultCommitEmail
type: String
- name: viewerHasStarred
externalId: viewerHasStarred
type: Bool
- name: viewerPossibleCommitEmails
externalId: viewerPossibleCommitEmails
type: String
list: true
- name: webCommitSignoffRequired
externalId: webCommitSignoffRequired
type: Bool
# Attributes added in post-processing
- name: enterpriseId
externalId: enterpriseId
type: String
- name: orgId
externalId: orgId
type: String
indexed: true
attributeAlias: repositoryOrgId
RepositoryCollaborator:
parent: Repository
displayName: RepositoryCollaborator
externalId: $.collaborators.edges
description: Entity representing the metadata of a User (Collaborator) entity assigned to a GitHub Repository
pageSize: 100
pagesOrderedById: false
attributes:
- name: collaboratorId
externalId: $.node.id
type: String
indexed: true
uniqueId: true
attributeAlias: repositoryCollaboratorId
- name: permission
externalId: permission
type: String
indexed: true
# Collaborator is a User entity type: https://docs.github.com/en/graphql/reference/objects#repositorycollaboratoredge
Collaborator:
displayName: Collaborator
externalId: Collaborator
description: Entity representing a GitHub User assigned to some Repository
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: id
type: String
indexed: true
uniqueId: true
attributeAlias: collaboratorId
- name: bio
externalId: bio
type: String
- name: company
externalId: company
type: String
- name: createdAt
externalId: createdAt
type: DateTime
- name: databaseId
externalId: databaseId
type: Int64
- name: email
externalId: email
type: String
- name: login
externalId: login
type: String
indexed: true
attributeAlias: collaboratorLogin
- name: isBountyHunter
externalId: isBountyHunter
type: Bool
- name: isCampusExpert
externalId: isCampusExpert
type: Bool
- name: isDeveloperProgramMember
externalId: isDeveloperProgramMember
type: Bool
- name: isEmployee
externalId: isEmployee
type: Bool
- name: isFollowingViewer
externalId: isFollowingViewer
type: Bool
- name: isHireable
externalId: isHireable
type: Bool
- name: isSiteAdmin
externalId: isSiteAdmin
type: Bool
- name: isViewer
externalId: isViewer
type: Bool
- name: location
externalId: location
type: String
- name: name
externalId: name
type: String
- name: pinnedItemsRemaining
externalId: pinnedItemsRemaining
type: Int64
- name: projectsResourcePath
externalId: projectsResourcePath
type: String
- name: resourcePath
externalId: resourcePath
type: String
- name: twitterUsername
externalId: twitterUsername
type: String
- name: updatedAt
externalId: updatedAt
type: DateTime
- name: viewerCanChangePinnedItems
externalId: viewerCanChangePinnedItems
type: Bool
- name: viewerCanCreateProjects
externalId: viewerCanCreateProjects
type: Bool
- name: viewerCanFollow
externalId: viewerCanFollow
type: Bool
- name: viewerIsFollowing
externalId: viewerIsFollowing
type: Bool
# https://docs.github.com/en/graphql/reference/objects#pullrequest
PullRequest:
displayName: PullRequest
externalId: PullRequest
description: Entity representing a GitHub PullRequest
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: id
type: String
indexed: true
uniqueId: true
attributeAlias: pullRequestId
- name: baseRepositoryId
externalId: $.baseRepository.id
type: String
indexed: true
attributeAlias: baseRepositoryId
- name: headRepositoryId
externalId: $.headRepository.id
type: String
indexed: true
attributeAlias: headRepositoryId
- name: authorLogin
externalId: $.author.login
type: String
indexed: true
attributeAlias: authorLogin
- name: authorAssociation
externalId: authorAssociation
type: String
- name: baseRefName
externalId: baseRefName
type: String
- name: changedFiles
externalId: changedFiles
type: Int64
- name: closed
externalId: closed
type: Bool
indexed: true
- name: closedAt
externalId: closedAt
type: DateTime
- name: createdAt
externalId: createdAt
type: DateTime
- name: createdViaEmail
externalId: createdViaEmail
type: Bool
- name: deletions
externalId: deletions
type: Int64
- name: headRefName
externalId: headRefName
type: String
- name: includesCreatedEdit
externalId: includesCreatedEdit
type: Bool
- name: isCrossRepository
externalId: isCrossRepository
type: Bool
- name: isDraft
externalId: isDraft
type: Bool
- name: lastEditedAt
externalId: lastEditedAt
type: DateTime
- name: locked
externalId: locked
type: Bool
indexed: true
- name: maintainerCanModify
externalId: maintainerCanModify
type: Bool
- name: mergeable
externalId: mergeable
type: String
- name: merged
externalId: merged
type: Bool
- name: mergedAt
externalId: mergedAt
type: DateTime
- name: number
externalId: number
type: Int64
- name: publishedAt
externalId: publishedAt
type: DateTime
- name: state
externalId: state
type: String
indexed: true
- name: title
externalId: title
type: String
- name: updatedAt
externalId: updatedAt
type: DateTime
PullRequestAssignee:
displayName: PullRequestAssignee
externalId: PullRequestAssignee
description: Entity representing the connection between User entities that are assigned to a GitHub PullRequest
pageSize: 100
pagesOrderedById: false
attributes:
- name: uniqueId
externalId: uniqueId
type: String
indexed: true
uniqueId: true
- name: pullRequestId
externalId: pullRequestId
type: String
indexed: true
attributeAlias: assignedPullRequestId
- name: userId
externalId: id
type: String
indexed: true
attributeAlias: pullRequestAssigneeId
PullRequestParticipant:
displayName: PullRequestParticipant
externalId: PullRequestParticipant
description: Entity representing the connection between a User entity that is a participant of a GitHub PullRequest
pageSize: 100
pagesOrderedById: false
attributes:
- name: uniqueId
externalId: uniqueId
type: String
indexed: true
uniqueId: true
- name: pullRequestId
externalId: pullRequestId
type: String
indexed: true
attributeAlias: participantPullRequestId
- name: userId
externalId: id
type: String
indexed: true
attributeAlias: pullRequestParticipantId
# https://docs.github.com/en/graphql/reference/objects#pullrequestreview
PullRequestReview:
displayName: PullRequestReview
externalId: PullRequestReview
description: Entity representing a GitHub PullRequest
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: id
type: String
indexed: true
uniqueId: true
- name: userLogin
externalId: $.author.login
type: String
indexed: true
attributeAlias: reviewAuthorLogin
- name: pullRequestId
externalId: pullRequestId
type: String
indexed: true
attributeAlias: reviewPullRequestId
- name: authorAssociation
externalId: authorAssociation
type: String
- name: authorCanPushToRepository
externalId: authorCanPushToRepository
type: Bool
- name: createdAt
externalId: createdAt
type: DateTime
- name: createdViaEmail
externalId: createdViaEmail
type: Bool
- name: includesCreatedEdit
externalId: includesCreatedEdit
type: Bool
- name: lastEditedAt
externalId: lastEditedAt
type: DateTime
- name: state
externalId: state
type: String
indexed: true
- name: publishedAt
externalId: publishedAt
type: DateTime
- name: submittedAt
externalId: submittedAt
type: DateTime
- name: updatedAt
externalId: updatedAt
type: DateTime
# https://docs.github.com/en/graphql/reference/objects#pullrequestcommit
PullRequestCommit:
displayName: PullRequestCommit
externalId: PullRequestCommit
description: Entity representing a Commit in a GitHub PullRequest
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: id
type: String
indexed: true
uniqueId: true
- name: pullRequestId
externalId: pullRequestId
type: String
indexed: true
attributeAlias: commitPullRequestId
- name: commitId
externalId: $.commit.id
type: String
- name: committedDate
externalId: $.commit.committedDate
type: DateTime
indexed: true
- name: commitAuthor
externalId: $.commit.author.user.id
type: String
indexed: true
attributeAlias: commitAuthorId
# https://docs.github.com/en/graphql/reference/objects#pullrequestchangedfile
PullRequestChangedFile:
displayName: PullRequestChangedFile
externalId: PullRequestChangedFile
description: Entity representing a changed file in a GitHub PullRequest
pageSize: 100
pagesOrderedById: false
attributes:
- name: uniqueId # concatenated the file path and PR id
externalId: uniqueId
type: String
indexed: true
uniqueId: true
- name: pullRequestId
externalId: pullRequestId
type: String
indexed: true
attributeAlias: changedFilePullRequestId
- name: path # unique for each PR
externalId: path
type: String
indexed: true
- name: additions
externalId: additions
type: Int64
- name: deletions
externalId: deletions
type: Int64
- name: changeType
externalId: changeType
type: String
indexed: true
# https://docs.github.com/en/graphql/reference/objects#issue
Issue:
displayName: Issue
externalId: Issue
description: Entity representing a GitHub Issue
pageSize: 100
pagesOrderedById: false
attributes:
- name: id
externalId: id
type: String
indexed: true
uniqueId: true
attributeAlias: issueId
- name: authorLogin
externalId: $.author.login
type: String
indexed: true
attributeAlias: issueAuthorLogin
- name: repositoryId
externalId: $.repository.id
type: String
indexed: true
attributeAlias: issueRepositoryId
- name: activeLockReason
externalId: activeLockReason
type: String
- name: closed
externalId: closed
type: Bool
indexed: true
- name: closedAt
externalId: closedAt
type: DateTime
- name: createdAt
externalId: createdAt
type: DateTime
- name: createdViaEmail
externalId: createdViaEmail
type: Bool
- name: includesCreatedEdit
externalId: includesCreatedEdit
type: Bool
- name: isPinned
externalId: isPinned
type: Bool
- name: lastEditedAt
externalId: lastEditedAt
type: DateTime
- name: locked
externalId: locked
type: Bool
indexed: true
- name: number
externalId: number
type: Int64
- name: publishedAt
externalId: publishedAt
type: DateTime
- name: state
externalId: state
type: String
indexed: true
- name: stateReason
externalId: stateReason
type: String
- name: title
externalId: title
type: String
- name: updatedAt
externalId: updatedAt
type: DateTime
IssueAssignee:
displayName: IssueAssignee
externalId: IssueAssignee
description: Entity representing the connection between a User entity assigned to a GitHub Issue
pageSize: 100
pagesOrderedById: false
attributes:
- name: uniqueId
externalId: uniqueId
type: String
indexed: true
uniqueId: true
- name: issueId