forked from graphql/graphql-landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessed_landscape.yml
3276 lines (3276 loc) · 136 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
parents:
- 'https://www.crunchbase.com/organization/linux-foundation'
github_data:
languages:
- name: Shell
value: 3112
color: '#89e051'
contributions: 0;0;0;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;1;0;9;0;0;1;2;6;0;0;1;0;1;1;0;3;0;1;1
firstWeek: 2018-11-04Z
stars: 12089
license: Unknown License
description: GraphQL is a query language and execution engine tied to any backend service.
latest_commit_date: '2019-10-21T19:46:05Z'
latest_commit_link: /graphql/graphql-spec/commit/b2aca184a36f85591db9ec69eb1ae9c30d10ef08
release_date: '2018-06-11T02:45:19Z'
release_link: 'https://github.com/graphql/graphql-spec/releases'
contributors_count: 87
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 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/'
parents:
- 'https://www.crunchbase.com/organization/heavybit-industries'
kind: funding
funding: 53200000
github_data:
languages:
- name: TypeScript
value: 901043
color: '#2b7489'
- name: JavaScript
value: 3068
color: '#f1e05a'
- name: Batchfile
value: 31
color: '#C1F12E'
contributions: >-
76;73;37;5;49;21;10;14;3;10;11;15;9;40;29;34;10;19;31;26;21;32;40;15;10;9;14;26;23;18;25;13;19;3;13;14;11;22;21;27;14;18;11;1;8;28;12;11;14;18;21;13
firstWeek: 2018-11-04Z
stars: 2165
license: MIT License
description: ✏️ Tooling for development and production Apollo workflows
latest_commit_date: '2019-10-26T12:12:14Z'
latest_commit_link: /apollographql/apollo-tooling/commit/c978df72f70431d8fbfd6b7d97b8fb9975d70a00
contributors_count: 144
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: 2019-10-24T21:38:55.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
parents:
- 'https://www.crunchbase.com/organization/linux-foundation'
github_data:
languages:
- name: JavaScript
value: 380580
color: '#f1e05a'
- name: TypeScript
value: 122324
color: '#2b7489'
- name: CSS
value: 34786
color: '#563d7c'
- name: HTML
value: 10889
color: '#e34c26'
- name: Shell
value: 3554
color: '#89e051'
contributions: 1;0;0;1;1;0;0;0;0;0;0;0;1;3;0;0;0;4;0;1;1;2;1;2;0;0;2;21;15;0;19;19;11;17;1;0;0;0;9;4;2;11;9;1;6;0;0;9;11;1;8;2
firstWeek: 2018-11-04Z
stars: 9391
license: MIT License
description: An in-browser IDE for exploring GraphQL.
latest_commit_date: '2019-10-23T14:21:25Z'
latest_commit_link: /graphql/graphiql/commit/87e9d465b51487d41f03e7c09eda5d2e7116e1cb
release_date: '2019-10-19T13:58:22Z'
release_link: 'https://github.com/graphql/graphiql/releases'
contributors_count: 114
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: false
percentage: null
twitter_data:
latest_tweet_date: 2019-06-26T16:15:00.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'
parents: []
kind: funding
funding: 68500000
github_data:
languages:
- name: Python
value: 11366988
color: '#3572A5'
- name: Makefile
value: 2786
color: '#427819'
- name: Dockerfile
value: 2144
color: '#384d54'
- name: Shell
value: 1695
color: '#89e051'
contributions: 2;1;20;3;0;5;0;4;9;11;11;79;37;10;19;9;2;18;40;40;27;26;34;9;26;3;3;4;17;8;4;9;11;16;8;28;2;9;14;7;5;3;2;13;2;22;12;5;16;17;0;2
firstWeek: 2018-11-04Z
stars: 466
license: MIT License
description: GraphQL Engine built with Python 3.6+ / asyncio
latest_commit_date: '2019-10-21T08:43:38Z'
latest_commit_link: /tartiflette/tartiflette/commit/b406b02c0789821b1e3a4628f19dc00fd4b86381
release_date: '2019-10-10T09:15:37Z'
release_link: 'https://github.com/tartiflette/tartiflette/releases'
contributors_count: 9
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: 2019-10-24T15:12:44.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'
parents: []
kind: funding
funding: 19221423
github_data:
languages:
- name: C++
value: 17961829
color: '#f34b7d'
- name: JavaScript
value: 4389469
color: '#f1e05a'
- name: CSS
value: 460952
color: '#563d7c'
- name: CMake
value: 348302
- name: HTML
value: 218470
color: '#e34c26'
- name: C
value: 202418
color: '#555555'
- name: Shell
value: 148672
color: '#89e051'
- name: Python
value: 103388
color: '#3572A5'
- name: Pascal
value: 75391
color: '#E3F171'
- name: Yacc
value: 65153
color: '#4B6C4B'
- name: Assembly
value: 61748
color: '#6E4C13'
- name: NSIS
value: 47299
- name: LLVM
value: 12405
color: '#185619'
- name: Perl
value: 9811
color: '#0298c3'
- name: PowerShell
value: 7885
color: '#012456'
- name: Makefile
value: 7860
color: '#427819'
- name: Objective-C
value: 3599
color: '#438eff'
- name: Batchfile
value: 3282
color: '#C1F12E'
- name: Groovy
value: 131
color: '#e69f56'
contributions: >-
38;29;20;54;62;57;34;31;10;10;30;24;14;28;23;16;32;32;30;32;73;62;38;53;55;38;33;74;52;43;35;41;19;17;34;39;26;34;25;24;20;28;26;29;34;40;29;39;39;46;40;24
firstWeek: 2018-11-04Z
stars: 8747
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: '2019-10-25T17:45:32Z'
latest_commit_link: /arangodb/arangodb/commit/ac1033247831fb031c5246fa13bc077c2c366bab
contributors_count: 93
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: 2019-10-27T00:15:00.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: null
parents: []
kind: funding
funding: 14450000
github_data:
languages:
- name: Go
value: 2710882
color: '#00ADD8'
- name: Shell
value: 56151
color: '#89e051'
- name: Makefile
value: 8197
color: '#427819'
- name: Smarty
value: 2868
- name: Dockerfile
value: 784
color: '#384d54'
contributions: >-
15;30;14;10;27;9;4;16;14;16;14;20;25;16;30;33;30;20;36;21;21;16;27;33;12;20;28;16;29;22;25;23;18;25;19;11;20;19;17;10;21;16;10;9;29;15;19;22;15;13;19;4
firstWeek: 2018-11-04Z
stars: 11479
license: Other
description: 'Fast, Distributed Graph DB'
latest_commit_date: '2019-10-26T00:43:16Z'
latest_commit_link: /dgraph-io/dgraph/commit/491f6d436ea6f5986ef7f4fadd27153693396a85
release_date: '2019-09-04T07:15:44Z'
release_link: 'https://github.com/dgraph-io/dgraph/releases'
contributors_count: 111
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:
latest_tweet_date: 2019-10-26T23:04:01.000Z
- item:
name: EdgeDB
homepage_url: 'https://edgedb.com/'
repo_url: 'https://github.com/edgedb/edgedb'
logo: edgedb.svg
crunchbase: 'https://www.crunchbase.com/organization/magicstack'
crunchbase_data:
name: MagicStack
description: magicstack is a Toronto-based team of software engineers.
num_employees_min: 1
num_employees_max: 10
homepage: 'https://magic.io/'
city: Toronto
region: Ontario
country: Canada
twitter: null
linkedin: null
parents: []
github_data:
languages:
- name: Python
value: 4962095
color: '#3572A5'
- name: C
value: 22507
color: '#555555'
- name: TSQL
value: 3627
- name: Makefile
value: 1407
color: '#427819'
- name: Shell
value: 415
color: '#89e051'
contributions: 38;11;43;28;38;13;27;10;0;16;43;57;67;35;6;10;38;27;30;16;33;43;75;32;10;10;5;16;3;2;3;5;2;4;2;1;0;5;2;8;12;5;4;7;6;2;4;10;10;6;12;15
firstWeek: 2018-11-04Z
stars: 3328
license: Apache License 2.0
description: The next generation relational database.
latest_commit_date: '2019-10-26T19:29:36Z'
latest_commit_link: /edgedb/edgedb/commit/00705fb4b6bffe1a62bac7fe64020d0410d7fccc
release_date: '2019-04-12T06:31:17Z'
release_link: 'https://github.com/edgedb/edgedb/releases'
contributors_count: 11
contributors_link: 'https://github.com/edgedb/edgedb/graphs/contributors'
github_start_commit_data:
start_commit_link: /edgedb/edgedb/commit/0288121f3d64582b1b7bccbfebb5fca2b6091723
start_date: '2008-10-01T00:16:16Z'
image_data:
fileName: edge-db.svg
hash: vo29JWqRbnsZyrhLyr3Vc4sYfMRCLVaD0Z5pxX+rXg8=
best_practice_data:
badge: false
percentage: null
- item:
name: Fauna
homepage_url: 'https://fauna.com/'
logo: fauna.svg
crunchbase: 'https://www.crunchbase.com/organization/fauna'
crunchbase_data:
name: Fauna
description: 'FaunaDB is a global transactional database offering multi-region strong consistency, relational modeling, and unlimited horizontal scale.'
num_employees_min: 11
num_employees_max: 50
homepage: 'https://fauna.com/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/fauna'
linkedin: 'https://www.linkedin.com/company/faunadb/'
parents: []
kind: funding
funding: 32609994
image_data:
fileName: fauna.svg
hash: Z1y3961UpBxr7vJ+CFtQOxvsJZfs1qJ+r+9tWRHRGeo=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-26T04:19:19.000Z
- item:
name: Hasura GraphQL Engine
homepage_url: 'https://hasura.io'
repo_url: 'https://github.com/hasura/graphql-engine'
logo: 'https://landscape.cncf.io/logos/hasura-graph-ql-engine.svg'
crunchbase: 'https://www.crunchbase.com/organization/hasura'
crunchbase_data:
name: Hasura
description: 'Blazing fast, instant realtime GraphQL APIs and eventing on Postgres with fine grained access control'
num_employees_min: 11
num_employees_max: 50
homepage: 'http://hasura.io/'
city: Palo Alto
region: California
country: United States
twitter: 'https://twitter.com/hasurahq'
linkedin: 'https://www.linkedin.com/company/hasura/'
parents: []
kind: funding
funding: 1600000
github_data:
languages:
- name: JavaScript
value: 1924164
color: '#f1e05a'
- name: Haskell
value: 1065469
color: '#5e5086'
- name: Go
value: 264276
color: '#00ADD8'
- name: CSS
value: 259250
color: '#563d7c'
- name: Python
value: 247632
color: '#3572A5'
- name: TypeScript
value: 74217
color: '#2b7489'
- name: Shell
value: 67115
color: '#89e051'
- name: Vue
value: 47995
color: '#2c3e50'
- name: PLpgSQL
value: 47261
- name: HTML
value: 47030
color: '#e34c26'
- name: TSQL
value: 28868
- name: Dockerfile
value: 10943
color: '#384d54'
- name: Makefile
value: 6974
color: '#427819'
- name: Java
value: 5245
color: '#b07219'
- name: Ruby
value: 2107
color: '#701516'
- name: SQLPL
value: 1440
- name: PowerShell
value: 183
color: '#012456'
contributions: >-
29;12;21;17;17;15;22;15;1;16;17;21;20;29;13;16;12;20;16;14;23;24;20;23;16;14;9;18;27;23;17;10;13;10;11;18;24;9;19;21;19;9;18;18;10;13;19;9;14;20;12;19
firstWeek: 2018-11-04Z
stars: 12607
license: Other
description: 'Blazing fast, instant realtime GraphQL APIs on Postgres with fine grained access control, also trigger webhooks on database events.'
latest_commit_date: '2019-10-26T17:03:54Z'
latest_commit_link: /hasura/graphql-engine/commit/ba751450be1a18b21d77a96cb8dde2efb6db6f38
release_date: '2019-10-22T08:30:34Z'
release_link: 'https://github.com/hasura/graphql-engine/releases'
contributors_count: 182
contributors_link: 'https://github.com/hasura/graphql-engine/graphs/contributors'
github_start_commit_data:
start_commit_link: /hasura/graphql-engine/commit/f7409ef2eb21bc73f6e9e8a1dbcdda878f0d6db1
start_date: '2018-06-24T13:40:48Z'
image_data:
fileName: hasura-graph-ql-engine.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-27T23:30:01.000Z
- item:
name: Neo4j
homepage_url: 'https://neo4j.com/'
repo_url: 'https://github.com/neo4j/neo4j'
logo: neo4j.svg
crunchbase: 'https://www.crunchbase.com/organization/neo-technology'
crunchbase_data:
name: Neo4j
description: 'Neo4j graph platform helps organizations make sense of their data by revealing how people, processes and digital systems are interrelated.'
num_employees_min: 101
num_employees_max: 250
homepage: 'https://www.neo4j.com/'
city: San Mateo
region: California
country: United States
twitter: 'http://twitter.com/neo4j'
linkedin: 'https://www.linkedin.com/company/neo4j'
parents: []
kind: funding
funding: 160100000
github_data:
languages:
- name: Java
value: 31728845
color: '#b07219'
- name: Scala
value: 6129347
color: '#c22d40'
- name: PowerShell
value: 172872
color: '#012456'
- name: Gherkin
value: 164746
color: '#5B2063'
- name: Shell
value: 113674
color: '#89e051'
- name: Roff
value: 88633
color: '#ecdebe'
- name: M4
value: 7634
- name: Batchfile
value: 3640
color: '#C1F12E'
- name: Makefile
value: 469
color: '#427819'
contributions: >-
76;50;25;34;32;24;51;46;1;6;50;47;20;23;32;41;19;40;26;25;31;23;27;15;19;21;24;20;46;19;7;7;11;7;12;11;4;1;3;2;13;35;17;36;39;26;33;14;18;18;25;13
firstWeek: 2018-11-04Z
stars: 7021
license: Unknown License
description: Graphs for Everyone
latest_commit_date: '2019-10-24T14:17:01Z'
latest_commit_link: /neo4j/neo4j/commit/cd561b633680c61b170f69fd488737e4f3bd6a55
release_date: '2017-09-15T12:28:27Z'
release_link: 'https://github.com/neo4j/neo4j/releases'
contributors_count: 176
contributors_link: 'https://github.com/neo4j/neo4j/graphs/contributors'
github_start_commit_data:
start_commit_link: /neo4j/neo4j/commit/6a945ab06a928bbd0f93dc56af279ee35107d7c3
start_date: '2007-05-24T01:34:45Z'
image_data:
fileName: neo4j.svg
hash: L3FywyQo36HHkBYlC82HHqCqicTV/TrI/PbUAbGK3II=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-28T00:05:58.000Z
- category:
name: Services
subcategories:
- subcategory:
name: Services
items:
- item:
name: 8base
homepage_url: 'https://8base.com'
logo: 8base.svg
twitter: 'https://twitter.com/8base'
crunchbase: 'https://www.crunchbase.com/organization/8base-2'
crunchbase_data:
name: 8base
description: 8base is a next generation backend-as-a-service for powering SaaS and other go-to-market applications.
num_employees_min: 11
num_employees_max: 50
homepage: 'http://8base.com'
city: Coral Gables
region: Florida
country: United States
twitter: 'https://twitter.com/8baseinc'
linkedin: 'https://www.linkedin.com/company/8base/'
parents: []
kind: funding
funding: 2800000
image_data:
fileName: 8base.svg
hash: 9ISuHXEQOyNpQEjFXCiPixrx3L8sQ0HoH+hZ98EEoWg=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-21T18:50:40.000Z
- item:
name: Apollo Server
homepage_url: 'https://www.apollographql.com/'
repo_url: 'https://github.com/apollographql/apollo-server'
logo: apollo-graphql.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/'
parents:
- 'https://www.crunchbase.com/organization/heavybit-industries'
kind: funding
funding: 53200000
github_data:
languages:
- name: TypeScript
value: 1249025
color: '#2b7489'
- name: JavaScript
value: 7891
color: '#f1e05a'
- name: Shell
value: 817
color: '#89e051'
contributions: >-
20;44;61;23;27;23;24;29;1;11;8;24;29;37;37;42;40;59;24;27;11;27;42;21;24;33;21;16;24;45;87;30;51;30;88;36;26;51;54;25;12;21;43;64;14;17;22;17;19;36;14;5
firstWeek: 2018-11-04Z
stars: 8356
license: MIT License
description: "\U0001F30D GraphQL server for Express, Connect, Hapi, Koa and more"
latest_commit_date: '2019-10-28T03:37:27Z'
latest_commit_link: /apollographql/apollo-server/commit/05d537071b78ec9b8691edf01f0ed2fd44a3b8eb
release_date: '2017-01-12T16:01:12Z'
release_link: 'https://github.com/apollographql/apollo-server/releases'
contributors_count: 311
contributors_link: 'https://github.com/apollographql/apollo-server/graphs/contributors'
github_start_commit_data:
start_commit_link: /apollographql/apollo-server/commit/a850c95c7c077c9dd5bafc056d16e7681b01a6f9
start_date: '2016-04-21T09:26:01Z'
image_data:
fileName: apollo-server.svg
hash: tHRhDNJjHVZKSDWv/b/UwuRDxTeCvssKzKAAo++Mbvs=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-24T21:38:55.000Z
- item:
name: AWS AppSync
homepage_url: 'https://aws.amazon.com/appsync/'
logo: appsync.svg
crunchbase: 'https://www.crunchbase.com/organization/amazon-web-services'
crunchbase_data:
name: Amazon Web Services
description: Amazon Web Services provides information technology infrastructure services to businesses in the form of web services.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://aws.amazon.com'
city: Seattle
region: Washington
country: United States
twitter: 'http://twitter.com/awscloud'
linkedin: 'https://www.linkedin.com/company/amazon-web-services/'
parents:
- 'https://www.crunchbase.com/organization/amazon'
ticker: AMZN
kind: market_cap
yahoo_finance_data:
market_cap: 871252426752
effective_ticker: AMZN
image_data:
fileName: aws-app-sync.svg
hash: RwqvZnF0ZgtSP9T6PFgfyw3eeH5khYBigKbAlBG21uo=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-28T04:00:19.000Z
- category:
name: GraphQL Foundation Member
subcategories:
- subcategory:
name: General
items:
- item:
name: 8base (member)
homepage_url: 'https://8base.com'
logo: 8base.svg
twitter: 'https://twitter.com/8base'
crunchbase: 'https://www.crunchbase.com/organization/8base-2'
crunchbase_data:
name: 8base
description: 8base is a next generation backend-as-a-service for powering SaaS and other go-to-market applications.
num_employees_min: 11
num_employees_max: 50
homepage: 'http://8base.com'
city: Coral Gables
region: Florida
country: United States
twitter: 'https://twitter.com/8baseinc'
linkedin: 'https://www.linkedin.com/company/8base/'
parents: []
kind: funding
funding: 2800000
image_data:
fileName: 8base-member.svg
hash: 9ISuHXEQOyNpQEjFXCiPixrx3L8sQ0HoH+hZ98EEoWg=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-21T18:50:40.000Z
- item:
name: Amazon Web Services (member)
homepage_url: 'https://aws.amazon.com/'
logo: amazon-web-services.svg
crunchbase: 'https://www.crunchbase.com/organization/amazon-web-services'
crunchbase_data:
name: Amazon Web Services
description: Amazon Web Services provides information technology infrastructure services to businesses in the form of web services.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://aws.amazon.com'
city: Seattle
region: Washington
country: United States
twitter: 'http://twitter.com/awscloud'
linkedin: 'https://www.linkedin.com/company/amazon-web-services/'
parents:
- 'https://www.crunchbase.com/organization/amazon'
ticker: AMZN
kind: market_cap
yahoo_finance_data:
market_cap: 871252426752
effective_ticker: AMZN
image_data:
fileName: amazon-web-services-member.svg
hash: SAaCDzEl11DXhCLfuUg3THlbYtVlQILQOhezT64IiU8=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-28T04:00:19.000Z
- item:
name: Apollo GraphQL (member)
homepage_url: 'https://www.apollographql.com/'
logo: apollo-graphql.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/'
parents:
- 'https://www.crunchbase.com/organization/heavybit-industries'
kind: funding
funding: 53200000
image_data:
fileName: apollo-graph-ql-member.svg
hash: tHRhDNJjHVZKSDWv/b/UwuRDxTeCvssKzKAAo++Mbvs=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-24T21:38:55.000Z
- item:
name: Dgraph Labs (member)
homepage_url: 'https://dgraph.io/'
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: null
parents: []
kind: funding
funding: 14450000
image_data:
fileName: dgraph-labs-member.svg
hash: jbD5QoHRu6twWSQXOo17PP5dpeNvfKFIhaAEptVAsW4=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-26T23:04:01.000Z
- item:
name: Elementl (member)
homepage_url: 'https://www.elementl.com/'
logo: elementl.svg
crunchbase: 'https://www.crunchbase.com/organization/elementl'
crunchbase_data:
name: Elementl
description: 'Building Dagster, an open-source Python library for building data applications.'
num_employees_min: 1
num_employees_max: 10
homepage: 'https://www.elementl.com'
city: San Francisco
region: California
country: United States
twitter: null
linkedin: null
parents: []
image_data:
fileName: elementl-member.svg
hash: OyYYeNssdVs/QSnhivxas/yxwoAxh9FpxGdGTm3g7Tk=
best_practice_data:
badge: false
percentage: null
- item:
name: Facebook (member)
homepage_url: 'https://www.facebook.com/'
logo: facebook.svg
crunchbase: 'https://www.crunchbase.com/organization/facebook'
crunchbase_data:
name: Facebook
description: Facebook is an online social networking service that enables its users to connect with friends and family.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.facebook.com'
city: Menlo Park
region: California
country: United States
twitter: 'https://twitter.com/facebook'
linkedin: 'https://www.linkedin.com/company/facebook'
parents: []
ticker: FB
kind: market_cap
yahoo_finance_data:
market_cap: 536040767488
effective_ticker: FB
image_data:
fileName: facebook-member.svg
hash: Kw/j7zyg8s56nLJnstyiRggamrZKJ4/3bzv4NIvNDuw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-26T02:44:42.000Z
- item:
name: Fauna (member)
homepage_url: 'https://fauna.com/'
logo: fauna.svg
crunchbase: 'https://www.crunchbase.com/organization/fauna'
crunchbase_data:
name: Fauna
description: 'FaunaDB is a global transactional database offering multi-region strong consistency, relational modeling, and unlimited horizontal scale.'
num_employees_min: 11
num_employees_max: 50
homepage: 'https://fauna.com/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/fauna'
linkedin: 'https://www.linkedin.com/company/faunadb/'
parents: []
kind: funding
funding: 32609994
image_data:
fileName: fauna-member.svg
hash: Z1y3961UpBxr7vJ+CFtQOxvsJZfs1qJ+r+9tWRHRGeo=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-26T04:19:19.000Z
- item:
name: Gatsby (member)
homepage_url: 'https://www.gatsbyjs.org/'
logo: gatsby.svg
crunchbase: 'https://www.crunchbase.com/organization/gatsby-e828'
crunchbase_data:
name: Gatsby
description: 'Open Source, modern website and app generator for React'
num_employees_min: 1
num_employees_max: 10
homepage: 'https://www.gatsbyjs.org/'
city: Berkeley
region: California
country: United States
twitter: 'https://twitter.com/gatsbyjs'
linkedin: 'https://www.linkedin.com/company/gatsbyjs/'
parents: []
kind: funding
funding: 18800000
image_data:
fileName: gatsby-member.svg
hash: qJsIPCWgj1U8S1PU8v9rAkrpEb654CcExtriT10ClB4=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-10-28T03:29:22.000Z
- item:
name: Hasura (member)
homepage_url: 'https://hasura.io'
logo: hasura.svg
crunchbase: 'https://www.crunchbase.com/organization/hasura'
crunchbase_data:
name: Hasura
description: 'Blazing fast, instant realtime GraphQL APIs and eventing on Postgres with fine grained access control'
num_employees_min: 11
num_employees_max: 50
homepage: 'http://hasura.io/'
city: Palo Alto
region: California
country: United States
twitter: 'https://twitter.com/hasurahq'
linkedin: 'https://www.linkedin.com/company/hasura/'
parents: []
kind: funding
funding: 1600000
image_data:
fileName: hasura-member.svg