forked from finopsfoundation/finops-landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessed_landscape.yml
6515 lines (6515 loc) · 263 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'
github_data:
languages:
- name: Shell
value: 3120
color: '#89e051'
contributions: 0;0;0;0;0;0;0;0;1;0;9;0;1;2;1;5;0;0;1;0;1;1;1;3;1;2;0;0;12;0;1;1;1;2;0;0;0;13;0;1;2;2;0;0;0;2;0;0;1;0;0;0
firstWeek: 2019-04-28Z
stars: 12591
license: Unknown License
description: GraphQL is a query language and execution engine tied to any backend service.
latest_commit_date: '2020-03-31T23:59:24Z'
latest_commit_link: /graphql/graphql-spec/commit/dca165502dfae2be0956c430bdd999c3a72ed9d2
release_date: '2018-06-11T02:45:19Z'
release_link: 'https://github.com/graphql/graphql-spec/releases'
contributors_count: 91
contributors_link: 'https://github.com/graphql/graphql-spec/graphs/contributors'
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: /wzA7u6MxKYkQbunahsIFIvt3QtzLq4x/PXWwtwps8g=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-06-26T16:15:00.000Z
- subcategory:
name: Tools
items:
- item:
name: Apollo Angular
homepage_url: 'https://www.apollographql.com/docs/angular'
repo_url: 'https://github.com/apollographql/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: []
github_data:
languages:
- name: TypeScript
value: 184659
color: '#2b7489'
- name: JavaScript
value: 8216
color: '#f1e05a'
contributions: 2;0;0;3;13;38;3;23;1;0;0;16;0;0;0;0;2;4;12;6;0;9;8;0;5;9;0;8;10;3;2;0;0;0;0;6;1;12;0;7;0;0;0;0;0;0;0;1;0;0;2;12
firstWeek: 2019-04-28Z
stars: 817
license: MIT License
description: "A fully-featured, production ready caching GraphQL client for Angular and every GraphQL server \U0001F381"
latest_commit_date: '2020-04-15T14:19:03Z'
latest_commit_link: /kamilkisiela/apollo-angular/commit/4663ad8b96fd9e75b1d7a927c70f7f3ddf7cfd8d
release_date: '2020-04-15T14:01:39Z'
release_link: 'https://github.com/apollographql/apollo-angular/releases'
contributors_count: 111
contributors_link: 'https://github.com/apollographql/apollo-angular/graphs/contributors'
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: q1bJx4Cxt+Qx26Mw2AhwmMsmO5z2TKrxiAqGw8r4ld4=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T16:53:02.000Z
- item:
name: Apollo CLI
homepage_url: 'https://www.apollographql.com/'
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 is the GraphQL company. Its Data Graph Platform helps developers, startups, and enterprises get the most out of GraphQL.'
num_employees_min: 11
num_employees_max: 50
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: []
kind: funding
funding: 53200000
github_data:
languages:
- name: TypeScript
value: 920288
color: '#2b7489'
- name: JavaScript
value: 1577
color: '#f1e05a'
- name: Batchfile
value: 31
color: '#C1F12E'
contributions: 14;13;31;23;8;28;13;16;11;5;16;23;12;28;25;15;14;6;0;16;20;14;16;7;19;27;12;0;6;8;12;3;10;7;6;4;0;6;5;1;2;7;1;12;11;8;3;2;10;8;15;30
firstWeek: 2019-04-28Z
stars: 2447
license: MIT License
description: ✏️ Tooling for development and production Apollo workflows
latest_commit_date: '2020-04-20T02:18:37Z'
latest_commit_link: /apollographql/apollo-tooling/commit/c9264504225e5c550d495d7934706b9a8dde2549
release_date: '2020-04-21T02:11:45Z'
release_link: 'https://github.com/apollographql/apollo-tooling/releases'
contributors_count: 152
contributors_link: 'https://github.com/apollographql/apollo-tooling/graphs/contributors'
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: 2020-04-21T18:57:13.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'
github_data:
languages:
- name: TypeScript
value: 449684
color: '#2b7489'
- name: JavaScript
value: 144997
color: '#f1e05a'
- name: CSS
value: 34786
color: '#563d7c'
- name: Shell
value: 3637
color: '#89e051'
- name: HTML
value: 1340
color: '#e34c26'
contributions: 2;0;31;5;8;11;22;20;7;0;0;0;0;10;3;13;6;3;1;6;0;1;9;11;2;7;1;1;1;8;4;29;33;36;48;23;32;13;31;30;2;8;41;24;22;7;10;8;2;15;25;4
firstWeek: 2019-04-28Z
stars: 10466
license: MIT License
description: GraphiQL & the GraphQL LSP Reference Ecosystem for building browser & IDE tools.
latest_commit_date: '2020-04-19T01:55:07Z'
latest_commit_link: /graphql/graphiql/commit/52744405110e9d1c28ec44067cce8afa033a21ff
release_date: '2020-04-10T19:26:09Z'
release_link: 'https://github.com/graphql/graphiql/releases'
contributors_count: 143
contributors_link: 'https://github.com/graphql/graphiql/graphs/contributors'
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: +OIb0eVIkv4eyjjYeI5yUANT2RwGgh4L9YCueUzNBnw=
best_practice_data:
badge: 3887
percentage: 88
twitter_data:
latest_tweet_date: 2019-06-26T16:15:00.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: []
github_data:
languages:
- name: TypeScript
value: 152587
color: '#2b7489'
- name: HTML
value: 1708
color: '#e34c26'
- name: CSS
value: 843
color: '#563d7c'
- name: JavaScript
value: 817
color: '#f1e05a'
- name: Dockerfile
value: 148
color: '#384d54'
contributions: 1;2;6;3;1;5;5;3;3;1;3;1;2;0;1;1;6;1;2;0;0;0;0;0;2;0;70;80;36;8;40;13;19;9;18;7;24;43;25;49;18;6;1;0;3;31;24;25;32;21;22;19
firstWeek: 2019-04-28Z
stars: 1433
license: MIT License
description: "\U0001F4DF Command line tool for common GraphQL development workflows"
latest_commit_date: '2020-04-22T03:00:36Z'
latest_commit_link: /Urigo/graphql-cli/commit/16c896d72cca077de3addcf37b152586fbfbd218
release_date: '2019-08-14T18:21:43Z'
release_link: 'https://github.com/urigo/graphql-cli/releases'
contributors_count: 40
contributors_link: 'https://github.com/urigo/graphql-cli/graphs/contributors'
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: vqfVHnwnZee2tlKMctqk7ktD9RXjEI/JODbR3l5k3go=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T16:53:02.000Z
- item:
name: GraphQL Code Generator
homepage_url: 'http://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: []
github_data:
languages:
- name: TypeScript
value: 1769512
color: '#2b7489'
- name: JavaScript
value: 61952
color: '#f1e05a'
- name: CSS
value: 10604
color: '#563d7c'
contributions: >-
13;25;17;32;16;21;17;27;33;17;63;17;22;23;48;45;42;31;41;16;31;45;18;46;39;35;27;47;30;27;36;30;21;22;18;13;45;28;31;61;22;16;36;25;17;28;32;43;37;50;21;36
firstWeek: 2019-04-28Z
stars: 4568
license: MIT License
description: GraphQL code generator with flexible support for custom plugins and templates
latest_commit_date: '2020-04-22T03:15:32Z'
latest_commit_link: /dotansimha/graphql-code-generator/commit/5b0c234b4b2e498a6a72e0a3231b00b69a16c3e4
release_date: '2020-04-19T08:46:22Z'
release_link: 'https://github.com/dotansimha/graphql-code-generator/releases'
contributors_count: 175
contributors_link: 'https://github.com/dotansimha/graphql-code-generator/graphs/contributors'
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: RdihUidVtf3zYTQLbYI3aUMYMXSSTvvH2VkBcEynInA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T16:53:02.000Z
- item:
name: GraphQL Config
homepage_url: 'https://graphql-config.com'
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: []
github_data:
languages:
- name: TypeScript
value: 42349
color: '#2b7489'
- name: JavaScript
value: 6053
color: '#f1e05a'
- name: CSS
value: 1681
color: '#563d7c'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;1;1;20;16;11;0;0;0;0;0;0;0;0;0;20;28;15;5;9;10;6;3;12;0;38;20;26;8
firstWeek: 2019-04-28Z
stars: 747
license: MIT License
description: 'One configuration for all your GraphQL tools (supported by most tools, editors & IDEs)'
latest_commit_date: '2020-04-21T14:44:03Z'
latest_commit_link: /kamilkisiela/graphql-config/commit/c6701286d670db248ca797c22365017ebed9faef
release_date: '2020-04-14T16:55:50Z'
release_link: 'https://github.com/kamilkisiela/graphql-config/releases'
contributors_count: 35
contributors_link: 'https://github.com/kamilkisiela/graphql-config/graphs/contributors'
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: AbNqbo70Dw9IGfACP4GQhw6YhzVCqxBOl3YC4gopZSg=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T16:53:02.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: []
github_data:
languages:
- name: TypeScript
value: 289876
color: '#2b7489'
- name: JavaScript
value: 40988
color: '#f1e05a'
- name: CSS
value: 6637
color: '#563d7c'
- name: Shell
value: 48
color: '#89e051'
contributions: >-
7;9;4;27;16;11;4;22;13;0;0;11;23;24;14;42;6;0;18;22;0;1;44;29;19;27;17;53;23;39;20;24;16;15;21;23;27;26;26;49;25;19;13;24;17;12;29;24;44;30;50;22
firstWeek: 2019-04-28Z
stars: 725
license: MIT License
description: "\U0001F575️♀️ Tooling for GraphQL. Compare schemas, validate documents, find breaking changes, find similar types, schema coverage"
latest_commit_date: '2020-04-22T02:34:55Z'
latest_commit_link: /kamilkisiela/graphql-inspector/commit/ccebcbfda33630287fb5393c1bf3566bf354aef0
release_date: '2020-04-21T19:37:28Z'
release_link: 'https://github.com/kamilkisiela/graphql-inspector/releases'
contributors_count: 31
contributors_link: 'https://github.com/kamilkisiela/graphql-inspector/graphs/contributors'
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: iVd6dZcOTqpMJ0NFqIBXBCVBL+jo9Nz3VA/ANs2XjgQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T16:53:02.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: []
github_data:
languages:
- name: TypeScript
value: 549017
color: '#2b7489'
- name: JavaScript
value: 28893
color: '#f1e05a'
- name: CSS
value: 2397
color: '#563d7c'
- name: HTML
value: 1346
color: '#e34c26'
- name: Thrift
value: 820
contributions: 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;12;7;0;40;28;0;39;39;9;56;52;67;44;53;73
firstWeek: 2019-04-28Z
stars: 1019
license: MIT License
description: 'GraphQL Mesh — Query anything, run anywhere'
latest_commit_date: '2020-04-22T03:41:28Z'
latest_commit_link: /Urigo/graphql-mesh/commit/bb9e3428077cb9992835a5e5fb7248a773560ed3
release_date: '2020-04-21T18:37:58Z'
release_link: 'https://github.com/Urigo/graphql-mesh/releases'
contributors_count: 10
contributors_link: 'https://github.com/Urigo/graphql-mesh/graphs/contributors'
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: 268mrUoz17cS14ezo4/ObKz7QWmjTlLQh7aXn3+k4/c=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T16:53:02.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: []
github_data:
languages:
- name: TypeScript
value: 163512
color: '#2b7489'
- name: CSS
value: 43174
color: '#563d7c'
- name: JavaScript
value: 28980
color: '#f1e05a'
- name: Shell
value: 472
color: '#89e051'
contributions: 2;18;3;6;7;16;2;0;20;34;20;12;16;12;17;7;19;11;11;4;16;4;14;2;10;7;6;18;19;16;10;11;6;6;6;9;10;17;14;37;11;9;3;10;6;5;9;26;19;20;11;10
firstWeek: 2019-04-28Z
stars: 812
license: MIT License
description: Enterprise Grade Tooling For Your GraphQL Server
latest_commit_date: '2020-04-22T02:53:54Z'
latest_commit_link: /Urigo/graphql-modules/commit/30e3b60ab4c2988235d70327217d6f7fef0446c7
release_date: '2020-04-02T17:50:01Z'
release_link: 'https://github.com/Urigo/graphql-modules/releases'
contributors_count: 36
contributors_link: 'https://github.com/Urigo/graphql-modules/graphs/contributors'
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: SxYRYq9n62x4m0xx5jKUKzFdDL1cjoDmoGCLpOpxmSw=
best_practice_data:
badge: 3373
percentage: 14
twitter_data:
latest_tweet_date: 2020-04-21T16:53:02.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: []
github_data:
languages:
- name: TypeScript
value: 205050
color: '#2b7489'
- name: JavaScript
value: 1061
color: '#f1e05a'
contributions: 0;0;0;0;0;0;0;0;13;5;0;0;2;0;22;5;6;13;3;2;8;2;7;6;10;5;11;7;7;5;4;3;4;12;7;8;6;3;5;8;5;12;1;8;5;2;4;11;10;12;10;13
firstWeek: 2019-04-28Z
stars: 585
license: MIT License
description: A library of custom GraphQL Scalars for creating precise type-safe GraphQL schemas.
latest_commit_date: '2020-04-22T03:37:49Z'
latest_commit_link: /Urigo/graphql-scalars/commit/6348150a05ec936819c774f8db93dcae6f1f6d69
release_date: '2020-04-02T16:01:05Z'
release_link: 'https://github.com/Urigo/graphql-scalars/releases'
contributors_count: 24
contributors_link: 'https://github.com/Urigo/graphql-scalars/graphs/contributors'
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: uYXDCzPgqSQEwYLW9a5IL7S1q1davWNvEhU6NsqUOQA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T16:53:02.000Z
- item:
name: merge-graphql-schemas
homepage_url: 'https://github.com/urigo/merge-graphql-schemas'
repo_url: 'https://github.com/urigo/merge-graphql-schemas'
logo: merge-graphql-schemas.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: []
github_data:
languages:
- name: TypeScript
value: 34800
color: '#2b7489'
- name: JavaScript
value: 8195
color: '#f1e05a'
contributions: 0;0;0;0;0;0;2;2;0;4;0;6;2;8;9;3;6;3;6;2;11;4;4;2;10;6;3;8;9;2;2;1;1;2;7;6;4;1;4;15;3;3;0;0;0;0;7;7;9;10;2;9
firstWeek: 2019-04-28Z
stars: 915
license: MIT License
description: A utility library to facilitate merging of modularized GraphQL schemas and resolver objects.
latest_commit_date: '2020-04-21T18:56:33Z'
latest_commit_link: /Urigo/merge-graphql-schemas/commit/a6adb0639c488599a2413c32f1474d6d34c4872b
release_date: '2020-04-16T14:42:58Z'
release_link: 'https://github.com/urigo/merge-graphql-schemas/releases'
contributors_count: 37
contributors_link: 'https://github.com/urigo/merge-graphql-schemas/graphs/contributors'
github_start_commit_data:
start_commit_link: /Urigo/merge-graphql-schemas/commit/6becb7de8258a84e331a7ac4d3df5264ab6eeab2
start_date: '2015-12-11T10:54:01Z'
image_data:
fileName: merge-graphql-schemas.svg
hash: Bb93a2nssci1yle9sd9wNa1lmG55HHJY1iuYR3L3NlE=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T16:53:02.000Z
- item:
name: SOFA
homepage_url: 'http://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: []
github_data:
languages:
- name: TypeScript
value: 62102
color: '#2b7489'
- name: JavaScript
value: 10308
color: '#f1e05a'
- name: CSS
value: 6424
color: '#563d7c'
- name: HTML
value: 1617
color: '#e34c26'
contributions: 0;0;0;0;0;0;0;0;0;2;1;3;3;2;1;0;0;33;6;4;13;5;14;1;11;7;4;11;9;2;1;6;7;5;5;1;7;3;13;11;9;3;7;9;5;2;5;11;17;15;10;11
firstWeek: 2019-04-28Z
stars: 474
license: MIT License
description: The best way to create REST APIs - Generate RESTful APIs from your GraphQL Server
latest_commit_date: '2020-04-22T03:40:46Z'
latest_commit_link: /Urigo/SOFA/commit/cf4f17ce0857a2c9b7f24fe787f189c3cb39cea0
release_date: '2020-03-11T19:19:08Z'
release_link: 'https://github.com/Urigo/sofa/releases'
contributors_count: 20
contributors_link: 'https://github.com/Urigo/sofa/graphs/contributors'
github_start_commit_data:
start_commit_link: /Urigo/SOFA/commit/1ae515496a92af3c60c239e98a580d5cd09d1db8
start_date: '2018-12-05T15:53:23Z'
image_data:
fileName: sofa.svg
hash: pg5rC5VaZP94Llns18iiutmEA9CZlZkVzhrBxwOtMUQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T16:53:02.000Z
- item:
name: Tartiflette
homepage_url: 'https://tartiflette.io'
repo_url: 'https://github.com/tartiflette/tartiflette'
logo: tartiflette.svg
crunchbase: 'https://www.crunchbase.com/organization/dailymotion'
crunchbase_data:
name: Dailymotion
description: Dailymotion is the leading destination for video discovery and exploration.
num_employees_min: 101
num_employees_max: 250
homepage: 'http://www.dailymotion.com'
city: Paris
region: Ile-de-France
country: France
twitter: 'http://twitter.com/dailymotionUSA'
linkedin: 'https://www.linkedin.com/company/24411'
acquisitions:
- date: '2013-12-10'
acquiree: Jilion
parents: []
kind: funding
funding: 68500000
github_data:
languages:
- name: Python
value: 11394320
color: '#3572A5'
- name: Makefile
value: 2786
color: '#427819'
- name: Dockerfile
value: 2123
color: '#384d54'
- name: Shell
value: 1695
color: '#89e051'
contributions: 3;0;13;15;5;5;8;17;6;34;4;0;12;16;3;5;4;5;9;7;17;16;12;16;5;2;2;5;0;2;5;2;0;2;2;0;0;2;2;1;2;9;9;14;20;10;4;0;1;1;0;0
firstWeek: 2019-04-28Z
stars: 582
license: MIT License
description: GraphQL Engine built with Python 3.6+ / asyncio
latest_commit_date: '2020-04-02T08:51:27Z'
latest_commit_link: /tartiflette/tartiflette/commit/b4afafd7d8ac351ad710a1d89414619c3c8f9770
release_date: '2020-02-19T09:05:32Z'
release_link: 'https://github.com/tartiflette/tartiflette/releases'
contributors_count: 14
contributors_link: 'https://github.com/tartiflette/tartiflette/graphs/contributors'
github_start_commit_data:
start_commit_link: /tartiflette/tartiflette/commit/b3ddc21232cfe6fb158151d1234da943b008d3b4
start_date: '2018-01-26T09:56:11Z'
image_data:
fileName: tartiflette.svg
hash: Hs1Ok2Xmb6CczPf7pzZGzrjuVrlhHX45OMqq5SqosLg=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T21:25:00.000Z
- item:
name: TypeGraphQL
homepage_url: 'https://typegraphql.ml'
repo_url: 'https://github.com/MichalLytek/type-graphql'
logo: type-graphql.svg
crunchbase: 'https://www.crunchbase.com/organization/typegraphql'
crunchbase_data:
name: TypeGraphQL
description: 'Create GraphQL schema and resolvers with TypeScript, using classes and decorators!'
num_employees_min: null
num_employees_max: null
homepage: 'https://typegraphql.com/'
city: Katowice
region: Slaskie
country: Poland
twitter: 'https://twitter.com/TypeGraphQL'
linkedin: null
acquisitions: []
parents: []
github_data:
languages:
- name: TypeScript
value: 535955
color: '#2b7489'
- name: JavaScript
value: 25656
color: '#f1e05a'
- name: CSS
value: 3194
color: '#563d7c'
- name: Shell
value: 374
color: '#89e051'
contributions: 8;6;3;0;0;1;0;0;0;0;2;6;0;1;0;0;5;0;0;11;4;2;0;5;0;2;0;5;2;4;9;9;4;2;3;3;5;2;0;0;2;0;1;0;7;2;8;4;9;7;0;1
firstWeek: 2019-04-28Z
stars: 4210
license: MIT License
description: 'Create GraphQL schema and resolvers with TypeScript, using classes and decorators!'
latest_commit_date: '2020-04-18T09:41:14Z'
latest_commit_link: /MichalLytek/type-graphql/commit/7bf668265071f6efeeb01cc9fbbc810f5cbe5ba8
release_date: '2019-12-21T20:48:53Z'
release_link: 'https://github.com/MichalLytek/type-graphql/releases'
contributors_count: 47
contributors_link: 'https://github.com/MichalLytek/type-graphql/graphs/contributors'
github_start_commit_data:
start_commit_link: /MichalLytek/type-graphql/commit/cbeb93aa5456cf2abd61b637ef9578233422cd3b
start_date: '2018-01-09T15:58:39Z'
image_data:
fileName: type-graph-ql.svg
hash: Hn264JaJ9GvnHoTXq2wxI7bvFim+uxeolGcqcZmiP5I=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-01T11:31:07.000Z
- category:
name: Databases
subcategories:
- subcategory:
name: Databases
items:
- item:
name: Arangodb
homepage_url: 'https://www.arangodb.com/'
repo_url: 'https://github.com/arangodb/arangodb'
logo: 'https://landscape.cncf.io/logos/arango-db.svg'
crunchbase: 'https://www.crunchbase.com/organization/arangodb'
crunchbase_data:
name: ArangoDB
description: 'ArangoDB is an open-source database with a native multi-model approach. Documents, graphs and K/V in one core with one query language.'
num_employees_min: 11
num_employees_max: 50
homepage: 'http://www.arangodb.com'
city: San Francisco
region: California
country: United States
twitter: 'http://twitter.com/arangodb'
linkedin: 'https://www.linkedin.com/company/5289249'
acquisitions: []
parents: []
kind: funding
funding: 19221424
github_data:
languages:
- name: C++
value: 17559684
color: '#f34b7d'
- name: JavaScript
value: 5418281
color: '#f1e05a'
- name: CSS
value: 451069
color: '#563d7c'
- name: CMake
value: 363214
- name: HTML
value: 226687
color: '#e34c26'
- name: C
value: 219275
color: '#555555'
- name: Shell
value: 136027
color: '#89e051'
- name: Python
value: 104279
color: '#3572A5'
- name: Pascal
value: 75391
color: '#E3F171'
- name: Yacc
value: 65333
color: '#4B6C4B'
- name: Assembly
value: 61827
color: '#6E4C13'
- name: NSIS
value: 48017
- name: TypeScript
value: 25182
color: '#2b7489'
- name: LLVM
value: 12405
color: '#185619'
- name: Perl
value: 9811
color: '#0298c3'
- name: PowerShell
value: 7885
color: '#012456'
- name: Objective-C
value: 3599
color: '#438eff'
- name: Batchfile
value: 3282
color: '#C1F12E'
- name: Makefile
value: 526
color: '#427819'
- name: Groovy
value: 131
color: '#e69f56'
contributions: >-
42;53;51;54;38;36;31;24;19;40;37;15;43;24;16;29;31;23;25;37;36;36;40;44;49;41;27;34;34;43;44;32;31;25;12;1;2;35;23;40;26;11;42;23;17;17;40;32;12;31;19;18
firstWeek: 2019-04-28Z
stars: 9466
license: Apache License 2.0
description: "\U0001F951 ArangoDB is a native multi-model database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions."
latest_commit_date: '2020-04-21T08:46:13Z'
latest_commit_link: /arangodb/arangodb/commit/465a0329cb3fd78de500be654a38268dd99e48ba
contributors_count: 94
contributors_link: 'https://github.com/arangodb/arangodb/graphs/contributors'
github_start_commit_data:
start_commit_link: /arangodb/arangodb/commit/6577d5417a000c29c9ee7666cbcc3cefae6eee21
start_date: '2011-10-26T06:42:49Z'
image_data:
fileName: arangodb.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-04-21T20:04:15.000Z
- item:
name: Dgraph
homepage_url: 'https://dgraph.io/'
repo_url: 'https://github.com/dgraph-io/dgraph'
logo: dgraph-labs.svg
crunchbase: 'https://www.crunchbase.com/organization/dgraph'
crunchbase_data:
name: Dgraph Labs
description: 'Dgraph is a fast, transactional, native and distributed graph database.'
num_employees_min: 1
num_employees_max: 10
homepage: 'http://dgraph.io'
city: San Francisco
region: California
country: United States
twitter: 'https://www.twitter.com/dgraphlabs'
linkedin: 'https://www.linkedin.com/company/dgraph-labs/'
acquisitions: []
parents: []
kind: funding
funding: 14450000
github_data:
languages:
- name: Go
value: 3947175
color: '#00ADD8'
- name: HCL
value: 97710
- name: Shell
value: 69393
color: '#89e051'
- name: TeX
value: 62368
color: '#3D6117'
- name: Makefile
value: 9024
color: '#427819'
- name: Ruby
value: 2663
color: '#701516'
- name: Dockerfile
value: 790
color: '#384d54'
- name: Smarty
value: 642
contributions: >-
27;21;19;39;5;32;25;17;23;19;7;26;29;10;15;30;22;22;22;32;24;25;27;26;25;15;13;12;5;18;20;24;18;31;20;18;17;46;30;26;14;17;22;37;13;14;25;23;23;20;30;27
firstWeek: 2019-04-28Z
stars: 12975
license: Other
description: 'Fast, Distributed Graph DB'
latest_commit_date: '2020-04-22T02:43:58Z'
latest_commit_link: /dgraph-io/dgraph/commit/32266dbc1d53fcae5955a2767ae8ef6cbdf0d7f9
release_date: '2020-03-31T00:42:03Z'
release_link: 'https://github.com/dgraph-io/dgraph/releases'
contributors_count: 131
contributors_link: 'https://github.com/dgraph-io/dgraph/graphs/contributors'
github_start_commit_data:
start_commit_link: /dgraph-io/dgraph/commit/a1ca14d187254ef331cf5fa664aa11eaec139e44
start_date: '2015-08-25T07:15:56Z'
image_data:
fileName: dgraph.svg
hash: jbD5QoHRu6twWSQXOo17PP5dpeNvfKFIhaAEptVAsW4=
best_practice_data:
badge: false
percentage: null
twitter_data: