-
Notifications
You must be signed in to change notification settings - Fork 114
/
processed_landscape.yml
10210 lines (10210 loc) · 398 KB
/
processed_landscape.yml
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 IS GENERATED AUTOMATICALLY!
landscape:
- category:
name: Projects
subcategories:
- subcategory:
name: Spec
items:
- item:
name: GraphQL Spec
homepage_url: https://graphql.org
project: foundationproject
repo_url: https://github.com/graphql/graphql-spec
logo: graphql.svg
crunchbase: https://www.crunchbase.com/organization/graphql-foundation
crunchbase_data:
name: GraphQL Foundation
description: Enabling widespread adoption of GraphQL to help accelerate development and the surrounding ecosystem
num_employees_min: 1
num_employees_max: 10
homepage: https://foundation.graphql.org
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/GraphQL
linkedin: null
acquisitions:
- date: '2018-11-06'
acquiree: GraphQL
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Open Source
- Software
github_data:
languages:
- name: Shell
value: 2839
color: '#89e051'
contributions: 0;0;0;0;0;3;5;3;5;1;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;4;5;1;0;1;1;1;0;0;0;0;0;0;0;0;0
firstWeek: 2022-04-24Z
stars: 14036
license: Unknown License
description: GraphQL is a query language and execution engine tied to any backend service.
latest_commit_date: '2023-02-11T00:20:12Z'
latest_commit_link: /graphql/graphql-spec/commit/afc0a35d271ba9502c3c68aeda6e6c6fbc223774
release_date: '2021-10-27T00:01:28Z'
release_link: https://github.com/graphql/graphql-spec/releases
contributors_count: 128
contributors_link: https://github.com/graphql/graphql-spec/graphs/contributors
repos:
- url: https://github.com/graphql/graphql-spec
stars: 14036
github_start_commit_data:
start_commit_link: /graphql/graphql-spec/commit/7c0398803c94826957be307e1d3c4a5ffc3c5b5e
start_date: '2015-07-01T00:41:15Z'
image_data:
fileName: graph-ql-spec.svg
hash: esvmOpcJT3pkXjYKCxUvrKZhDFSEHFpew8D1cql7QSw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-08T18:54:18.000Z
- subcategory:
name: Tools
items:
- item:
name: Apollo Angular
homepage_url: https://apollo-angular.com/docs
repo_url: https://github.com/kamilkisiela/apollo-angular
logo: apollo-angular.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 196636
color: '#2b7489'
- name: JavaScript
value: 9892
color: '#f1e05a'
- name: Shell
value: 9465
color: '#89e051'
- name: Dockerfile
value: 2898
color: '#384d54'
- name: SCSS
value: 562
- name: HTML
value: 255
color: '#e34c26'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;3;8;1;0;4;5;1;0;0;0;1;0;1;0;1;8;10;0;19;1;9;4;9;12;12;5;0;5
firstWeek: 2022-04-24Z
stars: 1438
license: MIT License
description: A fully-featured, production ready caching GraphQL client for Angular and every GraphQL server 🎁
latest_commit_date: '2023-04-19T01:40:59Z'
latest_commit_link: /kamilkisiela/apollo-angular/commit/55067d7640a44510e4ccdcf0b839999d2c62244c
release_date: '2023-02-13T10:19:58Z'
release_link: https://github.com/kamilkisiela/apollo-angular/releases
contributors_count: 148
contributors_link: https://github.com/kamilkisiela/apollo-angular/graphs/contributors
repos:
- url: https://github.com/kamilkisiela/apollo-angular
stars: 1438
github_start_commit_data:
start_commit_link: /apollographql/apollo-angular/commit/0ae5e9085320c135ad0da421ed1a5fc1e3585a96
start_date: '2016-04-16T00:10:50Z'
image_data:
fileName: apollo-angular.svg
hash: FRqcHWLabkjcFAMWrwfzHKlCg4WA2PzZotobkr080C4=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: Apollo CLI
homepage_url: https://www.apollographql.com/docs/community
repo_url: https://github.com/apollographql/apollo-tooling
logo: apollo-cli.svg
crunchbase: https://www.crunchbase.com/organization/meteor
crunchbase_data:
name: Apollo
description: Apollo helps engineering teams build unified graphs to accelerate application development and deliver better, more cohesive experiences.
num_employees_min: 101
num_employees_max: 250
homepage: http://www.apollographql.com
city: San Francisco
region: California
country: United States
twitter: http://twitter.com/apollographql
linkedin: https://www.linkedin.com/company/apollo-graphql
acquisitions:
- date: '2014-10-07'
acquiree: FathomDB
parents: []
funding: 183200000
stockExchange: null
company_type: For Profit
industries:
- Developer APIs
- Developer Platform
- Developer Tools
- Enterprise Software
- Open Source
- Software
kind: funding
github_data:
languages:
- name: TypeScript
value: 948326
color: '#2b7489'
- name: JavaScript
value: 1645
color: '#f1e05a'
- name: Batchfile
value: 31
color: '#C1F12E'
contributions: 1;23;3;0;10;0;5;3;0;1;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0
firstWeek: 2022-04-24Z
stars: 3037
license: MIT License
description: ✏️ Tooling for development and production Apollo workflows
latest_commit_date: '2023-03-29T12:35:23Z'
latest_commit_link: /apollographql/apollo-tooling/commit/a778ca162bdd20be9e60a914887302390c274644
release_date: '2022-05-20T22:49:04Z'
release_link: https://github.com/apollographql/apollo-tooling/releases
contributors_count: 179
contributors_link: https://github.com/apollographql/apollo-tooling/graphs/contributors
repos:
- url: https://github.com/apollographql/apollo-tooling
stars: 3037
github_start_commit_data:
start_commit_link: /apollographql/apollo-tooling/commit/547c70194c31f292200c409974cab4cd22e9bc48
start_date: '2016-08-12T15:29:21Z'
image_data:
fileName: apollo-cli.svg
hash: mq34WWtq7pDUV9T+ZLBYFoeeLbNUQ+NEcbt8E7GNKHU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-19T18:37:39.000Z
- item:
name: Envelop
homepage_url: https://www.envelop.dev
repo_url: https://github.com/dotansimha/envelop
logo: envelop.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 543358
color: '#2b7489'
- name: JavaScript
value: 17304
color: '#f1e05a'
- name: Shell
value: 68
color: '#89e051'
contributions: 2;0;10;6;2;0;10;1;4;8;9;3;0;3;4;2;9;4;3;0;4;3;2;2;16;4;2;0;1;3;7;4;0;4;4;1;1;1;1;0;1;3;62;7;8;2;3;0;0;0;0;3
firstWeek: 2022-04-24Z
stars: 667
license: MIT License
description: >-
Envelop is a lightweight library allowing developers to easily develop, share, collaborate and extend their GraphQL execution layer. Envelop is
the missing GraphQL plugin system.
latest_commit_date: '2023-04-19T08:16:39Z'
latest_commit_link: /n1ru4l/envelop/commit/8ddd919a5e395350f3e5d8e9919ae334e353ed22
release_date: '2023-02-20T14:11:46Z'
release_link: https://github.com/dotansimha/envelop/releases
contributors_count: 58
contributors_link: https://github.com/dotansimha/envelop/graphs/contributors
repos:
- url: https://github.com/dotansimha/envelop
stars: 667
github_start_commit_data:
start_commit_link: /dotansimha/envelop/commit/b1333b02930267774c47b731e273a9a381cea6b4
start_date: '2021-02-17T09:41:43Z'
image_data:
fileName: envelop.svg
hash: BHC8u4XIC4OmB3UuGqOZKSqIk7iEbLeLJExKQPMENAU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: GraphiQL
homepage_url: https://github.com/graphql/graphiql
project: foundationproject
repo_url: https://github.com/graphql/graphiql
logo: graphiql.svg
crunchbase: https://www.crunchbase.com/organization/graphql-foundation
crunchbase_data:
name: GraphQL Foundation
description: Enabling widespread adoption of GraphQL to help accelerate development and the surrounding ecosystem
num_employees_min: 1
num_employees_max: 10
homepage: https://foundation.graphql.org
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/GraphQL
linkedin: null
acquisitions:
- date: '2018-11-06'
acquiree: GraphQL
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Open Source
- Software
github_data:
languages:
- name: TypeScript
value: 1002657
color: '#2b7489'
- name: JavaScript
value: 56753
color: '#f1e05a'
- name: CSS
value: 46914
color: '#563d7c'
- name: HTML
value: 6263
color: '#e34c26'
- name: Shell
value: 3616
color: '#89e051'
- name: EJS
value: 2279
contributions: 3;9;12;9;15;17;20;13;1;11;14;22;8;14;24;26;8;15;14;26;1;2;1;8;21;2;11;16;14;12;0;9;18;3;0;0;0;8;2;5;4;5;1;3;12;25;0;14;1;0;5;10
firstWeek: 2022-04-24Z
stars: 14851
license: MIT License
description: GraphiQL & the GraphQL LSP Reference Ecosystem for building browser & IDE tools.
latest_commit_date: '2023-04-18T07:44:12Z'
latest_commit_link: /graphql/graphiql/commit/aeedf7614e422c783f5cfb5e226c5effa46318fd
release_date: '2023-03-26T20:50:28Z'
release_link: https://github.com/graphql/graphiql/releases
contributors_count: 266
contributors_link: https://github.com/graphql/graphiql/graphs/contributors
repos:
- url: https://github.com/graphql/graphiql
stars: 14851
github_start_commit_data:
start_commit_link: /graphql/graphiql/commit/b9dec272d89d9c590727fd10d62e4a47e0317fc7
start_date: '2015-08-24T08:59:14Z'
image_data:
fileName: graphi-ql.svg
hash: izC5kZR/Ssd+zkPGnOg7rW1eRqagsHDSyJmdxKn+6Us=
best_practice_data:
badge: 3887
percentage: 88
twitter_data:
latest_tweet_date: 2023-04-08T18:54:18.000Z
- item:
name: GraphQL CLI
homepage_url: https://github.com/urigo/graphql-cli
repo_url: https://github.com/urigo/graphql-cli
logo: graphql-cli.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 129524
color: '#2b7489'
- name: JavaScript
value: 8753
color: '#f1e05a'
- name: CSS
value: 1869
color: '#563d7c'
- name: HTML
value: 1708
color: '#e34c26'
- name: Dockerfile
value: 148
color: '#384d54'
contributions: 0;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2022-04-24Z
stars: 1934
license: MIT License
description: 📟 Command line tool for common GraphQL development workflows
latest_commit_date: '2022-05-23T14:26:58Z'
latest_commit_link: /Urigo/graphql-cli/commit/aa709566b74a3ee177c54f7dca909c1c4f75a598
release_date: '2020-10-07T12:54:45Z'
release_link: https://github.com/urigo/graphql-cli/releases
contributors_count: 52
contributors_link: https://github.com/urigo/graphql-cli/graphs/contributors
repos:
- url: https://github.com/urigo/graphql-cli
stars: 1934
github_start_commit_data:
start_commit_link: /Urigo/graphql-cli/commit/5d02c5b26d620d86c6c15a589cfd69bce149dc3a
start_date: '2017-07-17T10:18:56Z'
image_data:
fileName: graph-ql-cli.svg
hash: KmEuv6U0nIDvienHKaUZl8piS/YX1DJ6Ogzs2ymhXbc=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: GraphQL Code Generator
homepage_url: https://graphql-code-generator.com
repo_url: https://github.com/dotansimha/graphql-code-generator
logo: graphql-code-generator.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 1622996
color: '#2b7489'
- name: JavaScript
value: 29570
color: '#f1e05a'
- name: Rust
value: 11971
color: '#dea584'
- name: Shell
value: 59
color: '#89e051'
contributions: 14;15;13;7;10;6;11;13;5;20;38;24;8;15;17;36;14;16;20;25;5;5;24;24;16;11;14;12;7;9;9;17;32;9;2;15;8;8;10;4;30;14;23;69;15;39;21;16;31;16;14;6
firstWeek: 2022-04-24Z
stars: 9916
license: MIT License
description: >-
A tool for generating code based on a GraphQL schema and GraphQL operations (query/mutation/subscription), with flexible support for custom
plugins.
latest_commit_date: '2023-04-21T10:01:20Z'
latest_commit_link: /dotansimha/graphql-code-generator/commit/2aec33f88bddb7c1985057046dfb6dec5e96e40e
release_date: '2023-04-04T02:50:11Z'
release_link: https://github.com/dotansimha/graphql-code-generator/releases
contributors_count: 508
contributors_link: https://github.com/dotansimha/graphql-code-generator/graphs/contributors
repos:
- url: https://github.com/dotansimha/graphql-code-generator
stars: 9916
github_start_commit_data:
start_commit_link: /dotansimha/graphql-code-generator/commit/69240f01f84ce09769c9cae947bb4bb70964778d
start_date: '2016-12-06T10:46:14Z'
image_data:
fileName: graph-ql-code-generator.svg
hash: PxTB8twUwD8jLTXpYi26IOG1grJWWPoXD7n6Bg/Z2IM=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: GraphQL Config
homepage_url: https://graphql-config.com/introduction
repo_url: https://github.com/kamilkisiela/graphql-config
logo: graphql-config.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 52247
color: '#2b7489'
- name: JavaScript
value: 3179
color: '#f1e05a'
contributions: 0;0;0;4;24;0;0;0;0;2;0;0;0;20;5;10;7;4;4;3;2;0;3;15;19;4;0;0;0;0;1;0;0;1;0;30;10;10;3;0;14;8;6;2;14;21;13;0;0;7;13;0
firstWeek: 2022-04-24Z
stars: 1103
license: MIT License
description: One configuration for all your GraphQL tools (supported by most tools, editors & IDEs)
latest_commit_date: '2023-04-13T01:22:16Z'
latest_commit_link: /kamilkisiela/graphql-config/commit/73d9e74d0be2ffa1294b045015d5e6e0770551d4
release_date: '2023-03-06T15:28:50Z'
release_link: https://github.com/kamilkisiela/graphql-config/releases
contributors_count: 56
contributors_link: https://github.com/kamilkisiela/graphql-config/graphs/contributors
repos:
- url: https://github.com/kamilkisiela/graphql-config
stars: 1103
github_start_commit_data:
start_commit_link: /kamilkisiela/graphql-config/commit/b87d2449dee878f7e56b654eaf1c14f9cfd29994
start_date: '2016-07-29T09:54:26Z'
image_data:
fileName: graph-ql-config.svg
hash: NO8iAqK5hL2VxEP+Q3582iBvBzHT+KAIVEiBLVT5M+4=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: GraphQL Helix
homepage_url: https://www.graphql-helix.com
repo_url: https://github.com/contra/graphql-helix
logo: graphql-helix.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 1285068
color: '#2b7489'
- name: CSS
value: 33087
color: '#563d7c'
- name: JavaScript
value: 13819
color: '#f1e05a'
contributions: 0;0;0;0;0;0;0;0;0;0;0;13;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2022-04-24Z
stars: 812
license: MIT License
description: A highly evolved GraphQL HTTP Server 🧬
latest_commit_date: '2022-07-09T00:22:32Z'
latest_commit_link: /contra/graphql-helix/commit/f8e9b1acde278d3526bb43a6d573383d037e4993
release_date: '2022-07-09T00:23:41Z'
release_link: https://github.com/contra/graphql-helix/releases
contributors_count: 20
contributors_link: https://github.com/contra/graphql-helix/graphs/contributors
repos:
- url: https://github.com/contra/graphql-helix
stars: 812
github_start_commit_data:
start_commit_link: /contra/graphql-helix/commit/ea446250323d1b4d5c939f434709e63a23d66f97
start_date: '2020-10-29T02:25:33Z'
image_data:
fileName: graph-ql-helix.svg
hash: wOgeiRmZP63w7Hkiz93Lg9YCUhjPbbpvJ2O/rtch318=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: GraphQL Inspector
homepage_url: https://graphql-inspector.com
repo_url: https://github.com/kamilkisiela/graphql-inspector
logo: graphql-inspector.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 461422
color: '#2b7489'
- name: JavaScript
value: 9368
color: '#f1e05a'
- name: CSS
value: 687
color: '#563d7c'
- name: Dockerfile
value: 593
color: '#384d54'
contributions: 0;0;0;0;2;1;1;0;0;2;12;7;9;0;0;2;0;1;0;5;4;2;0;2;3;1;0;0;0;0;1;0;0;6;0;0;5;7;2;7;16;35;22;5;9;9;9;9;1;0;6;18
firstWeek: 2022-04-24Z
stars: 1483
license: MIT License
description: 🕵️♀️ Validate schema, get schema change notifications, validate operations, find breaking changes, look for similar types, schema coverage
latest_commit_date: '2023-04-19T15:24:23Z'
latest_commit_link: /kamilkisiela/graphql-inspector/commit/b59a9de1c0a2737b2bdb62475aef452422fb0bb7
release_date: '2023-04-19T15:26:10Z'
release_link: https://github.com/kamilkisiela/graphql-inspector/releases
contributors_count: 73
contributors_link: https://github.com/kamilkisiela/graphql-inspector/graphs/contributors
repos:
- url: https://github.com/kamilkisiela/graphql-inspector
stars: 1483
github_start_commit_data:
start_commit_link: /kamilkisiela/graphql-inspector/commit/cf25bde91e3863131fa8ac80e0c8545862bd59aa
start_date: '2018-11-15T19:04:07Z'
image_data:
fileName: graph-ql-inspector.svg
hash: Nho/ZdLXfuTZH8TeSFlyKzDlhFuWQvTlfI5cQovP3jA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: GraphQL Mesh
homepage_url: https://graphql-mesh.com
repo_url: https://github.com/Urigo/graphql-mesh
logo: graphql-mesh.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 1349638
color: '#2b7489'
- name: JavaScript
value: 13852
color: '#f1e05a'
- name: Shell
value: 379
color: '#89e051'
- name: Dockerfile
value: 279
color: '#384d54'
contributions: >-
28;28;18;12;24;16;32;9;28;20;14;12;27;14;25;33;24;46;27;48;53;67;29;39;29;51;36;30;22;15;23;39;32;17;16;11;23;22;27;23;17;8;55;14;14;6;14;26;15;57;13;11
firstWeek: 2022-04-24Z
stars: 2831
license: MIT License
description: GraphQL Mesh — Query anything, run anywhere
latest_commit_date: '2023-04-20T12:09:11Z'
latest_commit_link: /Urigo/graphql-mesh/commit/a597261dbb4f18c47bf7323695e853950ae500df
release_date: '2023-04-17T14:34:11Z'
release_link: https://github.com/Urigo/graphql-mesh/releases
contributors_count: 104
contributors_link: https://github.com/Urigo/graphql-mesh/graphs/contributors
repos:
- url: https://github.com/Urigo/graphql-mesh
stars: 2831
github_start_commit_data:
start_commit_link: /Urigo/graphql-mesh/commit/c7aeac37d33459247e40f191481fe3a98e9228dc
start_date: '2020-01-09T08:17:54Z'
image_data:
fileName: graph-ql-mesh.svg
hash: FJ6jvpKlCT68oc9bcXN6mq2xmJ85dXELZ0wnFEyHy2k=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: GraphQL Modules
homepage_url: https://graphql-modules.com
repo_url: https://github.com/Urigo/graphql-modules
logo: graphql-modules.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 207897
color: '#2b7489'
- name: Shell
value: 9769
color: '#89e051'
- name: JavaScript
value: 4894
color: '#f1e05a'
- name: Dockerfile
value: 2898
color: '#384d54'
contributions: 4;6;8;4;8;5;8;7;14;4;0;0;0;0;0;1;3;1;4;0;0;7;7;8;4;1;0;0;1;0;1;0;0;1;0;0;0;0;0;0;1;4;1;0;0;5;3;3;0;0;0;2
firstWeek: 2022-04-24Z
stars: 1243
license: MIT License
description: Enterprise Grade Tooling For Your GraphQL Server
latest_commit_date: '2023-04-17T15:56:20Z'
latest_commit_link: /Urigo/graphql-modules/commit/70f8bd301840129fd31db83df1b86da93f3c28da
release_date: '2023-03-22T12:36:16Z'
release_link: https://github.com/Urigo/graphql-modules/releases
contributors_count: 65
contributors_link: https://github.com/Urigo/graphql-modules/graphs/contributors
repos:
- url: https://github.com/Urigo/graphql-modules
stars: 1243
github_start_commit_data:
start_commit_link: /Urigo/graphql-modules/commit/040896f1b1aea413f7fc70f2b0a9f6faad8ac4f6
start_date: '2018-05-13T20:19:37Z'
image_data:
fileName: graph-ql-modules.svg
hash: +zcXe7JsOAC11PwTcJwXXQ/omT8W/C9geL4MPSkJ21k=
best_practice_data:
badge: 3373
percentage: 15
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: GraphQL Scalars
homepage_url: https://github.com/Urigo/graphql-scalars
repo_url: https://github.com/Urigo/graphql-scalars
logo: graphql-scalars.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 435874
color: '#2b7489'
- name: JavaScript
value: 1974
color: '#f1e05a'
- name: Shell
value: 40
color: '#89e051'
contributions: 9;6;8;6;7;2;17;4;3;4;1;2;0;3;5;17;8;10;4;5;1;0;0;4;32;4;6;4;6;1;1;1;0;1;0;0;1;1;0;0;2;4;0;14;13;11;14;7;38;16;11;9
firstWeek: 2022-04-24Z
stars: 1700
license: MIT License
description: A library of custom GraphQL Scalars for creating precise type-safe GraphQL schemas.
latest_commit_date: '2023-04-21T08:03:25Z'
latest_commit_link: /Urigo/graphql-scalars/commit/5856a8f378e1cd216caa6de7d370606812f9b090
release_date: '2023-03-27T08:39:18Z'
release_link: https://github.com/Urigo/graphql-scalars/releases
contributors_count: 68
contributors_link: https://github.com/Urigo/graphql-scalars/graphs/contributors
repos:
- url: https://github.com/Urigo/graphql-scalars
stars: 1700
github_start_commit_data:
start_commit_link: /Urigo/graphql-scalars/commit/14fb859f0c77141980d06ed7afe36d17df7571ba
start_date: '2017-06-16T16:26:51Z'
image_data:
fileName: graph-ql-scalars.svg
hash: 9Brj+JXqgx6fRkLR9V2+C9Og8HizkOkXLkNC4z8nOG4=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: GraphQL Shield
homepage_url: https://www.graphql-shield.com
repo_url: https://github.com/maticzav/graphql-shield
logo: graphql-shield.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 88472
color: '#2b7489'
- name: JavaScript
value: 1662
color: '#f1e05a'
- name: Shell
value: 68
color: '#89e051'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;1;1;4;0;1;5;9;26;6;4;0;2;0;1;4;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2022-04-24Z
stars: 3440
license: MIT License
description: 🛡 A GraphQL tool to ease the creation of permission layer.
latest_commit_date: '2022-12-14T14:31:24Z'
latest_commit_link: /dimatill/graphql-shield/commit/b7617cebd882e340ababe042984817c227e2bca2
release_date: '2022-11-22T19:08:37Z'
release_link: https://github.com/maticzav/graphql-shield/releases
contributors_count: 55
contributors_link: https://github.com/maticzav/graphql-shield/graphs/contributors
repos:
- url: https://github.com/maticzav/graphql-shield
stars: 3440
github_start_commit_data:
start_commit_link: /maticzav/graphql-shield/commit/24cb7834586e4954eeaf0a844d65659482fcd5c8
start_date: '2018-02-11T17:22:04Z'
image_data:
fileName: graph-ql-shield.svg
hash: cMtLWqIsgCKig8pFdevUjuLH0VPbbooLp7sGtuaUGJY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: GraphQL Tools (by The Guild)
homepage_url: https://www.graphql-tools.com
repo_url: https://github.com/ardatan/graphql-tools
logo: graphql-tools.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 2478275
color: '#2b7489'
- name: JavaScript
value: 34028
color: '#f1e05a'
- name: Shell
value: 356
color: '#89e051'
contributions: 15;15;12;7;15;12;14;7;10;14;9;3;9;12;10;22;13;6;14;10;11;5;9;9;7;9;21;31;21;16;6;14;16;1;18;6;10;13;13;19;27;18;21;8;12;17;2;3;8;22;20;18
firstWeek: 2022-04-24Z
stars: 5133
license: MIT License
description: ':wrench: Build, mock, and stitch a GraphQL schema using the schema language'
latest_commit_date: '2023-04-21T08:58:30Z'
latest_commit_link: /ardatan/graphql-tools/commit/b258a02213b3f5658f142533d3239b2d47c0479c
release_date: '2023-04-18T11:42:03Z'
release_link: https://github.com/ardatan/graphql-tools/releases
contributors_count: 364
contributors_link: https://github.com/ardatan/graphql-tools/graphs/contributors
repos:
- url: https://github.com/ardatan/graphql-tools
stars: 5133
github_start_commit_data:
start_commit_link: /ardatan/graphql-tools/commit/fe17783a6a166278195d172beb5670b045fb300d
start_date: '2016-03-22T01:00:21Z'
image_data:
fileName: graph-ql-tools-by-the-guild.svg
hash: q+xRC7g0+Xqv6VOG+VTOHpjjRWmOBzZ9k8OO+u8E/ww=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: SOFA
homepage_url: https://sofa-api.com
repo_url: https://github.com/Urigo/sofa
logo: sofa.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group
num_employees_min: 11
num_employees_max: 50
homepage: http://the-guild.dev
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/TheGuildDev
linkedin: https://linkedin.com/company/the-guild-software
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 81865
color: '#2b7489'
- name: HTML
value: 1602
color: '#e34c26'
- name: JavaScript
value: 847
color: '#f1e05a'
contributions: 7;6;5;4;3;3;7;3;2;4;3;3;5;1;1;3;2;3;1;2;2;14;14;5;9;3;20;3;3;3;1;1;5;4;0;2;6;4;4;11;8;7;3;4;4;5;6;2;9;4;3;1
firstWeek: 2022-04-24Z
stars: 970
license: MIT License
description: The best way to create REST APIs - Generate RESTful APIs from your GraphQL Server
latest_commit_date: '2023-04-17T09:07:34Z'
latest_commit_link: /Urigo/SOFA/commit/210ff8d9d686a92d78f8eb2554e30066140c385c
release_date: '2022-09-21T15:04:32Z'
release_link: https://github.com/Urigo/sofa/releases
contributors_count: 40
contributors_link: https://github.com/Urigo/sofa/graphs/contributors
repos:
- url: https://github.com/Urigo/sofa
stars: 970
github_start_commit_data:
start_commit_link: /Urigo/SOFA/commit/1ae515496a92af3c60c239e98a580d5cd09d1db8
start_date: '2018-12-05T15:53:23Z'
image_data:
fileName: sofa.svg
hash: 7LoUNDEOFZD1XadVU+OsFCo6aNQ/gueNqn+qPzg4OTw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T14:59:57.000Z
- item:
name: SwiftGraphQL
homepage_url: https://www.swift-graphql.com
repo_url: https://github.com/maticzav/swift-graphql
logo: swiftgraphql.svg
crunchbase: https://www.crunchbase.com/organization/the-guild-9777
crunchbase_data:
name: The Guild
description: Distributed Open source developer group