Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add formatError option #5023

Closed
wants to merge 62 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
7490a28
Adds dep
flovilmart Mar 25, 2017
1c2846c
WIP
flovilmart Apr 5, 2017
e96a977
wip
flovilmart Apr 9, 2017
ff4cc7a
Proper querying on all objects + tests
flovilmart Dec 9, 2017
a88f31d
wip
flovilmart Aug 16, 2018
91e229f
nits
flovilmart Aug 22, 2018
97f0fdc
Adds common constraints on Number and String
flovilmart Aug 22, 2018
41ae482
Nicer display name for internal classes
flovilmart Aug 22, 2018
687a899
nit
flovilmart Aug 23, 2018
602055c
nit
flovilmart Aug 23, 2018
a0d28ec
Ensure we cleanup the cache between each calls
flovilmart Aug 23, 2018
6b41020
nest responses
flovilmart Aug 23, 2018
31bc417
Wrap all results in objects / object
flovilmart Aug 23, 2018
4143076
Adds support for skip, limit, pointers
flovilmart Aug 23, 2018
30a1e65
Ensure files don't explode
flovilmart Aug 23, 2018
63c2031
Adds support for geopoint queries
flovilmart Aug 23, 2018
40e169d
Support for arrays
flovilmart Aug 23, 2018
03dbea3
Adds ability to enable/disasble graphqli
flovilmart Aug 23, 2018
4cf0ce2
bumps graphql, refactor scalars into proper types
flovilmart Aug 23, 2018
f045115
Move to relay style Connection for list based responses
flovilmart Aug 24, 2018
8e08055
use id instead of objectId, use Node
flovilmart Aug 24, 2018
b868609
Adds support for relations
flovilmart Aug 24, 2018
d65d196
Removes the logic that walks down the selections and levergage resolvers
flovilmart Aug 24, 2018
c302f22
use resolver instead of includes
flovilmart Aug 24, 2018
a9adc1d
Adds ability to execute queries on relations
flovilmart Aug 24, 2018
61434c6
Relay compliant global identifier
flovilmart Aug 24, 2018
47b316e
Ensures that update mutations are relay compliant
flovilmart Aug 24, 2018
90da185
refactor namings and other objects
flovilmart Aug 25, 2018
12d34a0
Continued refactoring
flovilmart Aug 25, 2018
986423a
Extracts login and verification into separate module
flovilmart Aug 25, 2018
f7b17ba
temporary login method
flovilmart Aug 25, 2018
45cd4ce
Better implementations
flovilmart Aug 25, 2018
a3a64df
graphql endpoint: move into the static app method
flovilmart Aug 25, 2018
f34a99e
Make the graphQL endpoint static and accessible
flovilmart Aug 25, 2018
542e260
Use nice display names
flovilmart Aug 25, 2018
3c5a236
Split in sub schemas with each exposing Query and Mutation
flovilmart Aug 25, 2018
00f6789
Rename createObject to addObject
flovilmart Aug 25, 2018
cd1d604
Improve code
flovilmart Aug 25, 2018
1d47c2f
Improves interface for graphql parse schema
flovilmart Aug 25, 2018
17937b4
Make destroyClass compliant with full input
flovilmart Aug 26, 2018
96fa1ee
Remove ParseObject interface as it conflicts with Relay
flovilmart Aug 26, 2018
ee18146
Adds ability to fetch currentUser, login returns a User
flovilmart Aug 26, 2018
0b3b7ec
Adds CORS middleware before
flovilmart Aug 26, 2018
2481fd8
small lint nit
flovilmart Aug 26, 2018
0de4d82
Quick and dirty authentication for graphql
flovilmart Aug 26, 2018
a5bedd0
Adds clientMutationId for relay
flovilmart Aug 26, 2018
64daf00
Properly fetch user when using currentUser
flovilmart Aug 26, 2018
43983e0
Moves logOut logic into UserAuthentication, adds logOut to graphQL en…
flovilmart Aug 26, 2018
8dc2d24
Properly use input object for destroy
flovilmart Aug 27, 2018
91a3075
Fixes issue that would put the wrong unique ID
flovilmart Aug 27, 2018
72cd01d
Adds ability to run functions as graphql mutations
flovilmart Aug 28, 2018
27fb054
Adds async method to get inferred schema
flovilmart Aug 28, 2018
6f6c085
moves export
flovilmart Aug 29, 2018
6ffaf67
Adds test suite for graphql
flovilmart Aug 30, 2018
65b7f0f
Adds tests for UserAuth
flovilmart Aug 30, 2018
3195dfe
Adds tests for relay pagination, fixes bug when using before
flovilmart Aug 30, 2018
91b2a97
Improves testing for parsers and utilities functions
flovilmart Aug 30, 2018
708e397
Adds test for issue that prevents the user from having all its info
flovilmart Sep 1, 2018
0c207ea
Properly re-fetch the auth after creating a user
flovilmart Sep 1, 2018
c314e7c
Properly drop the DB on startup
flovilmart Sep 1, 2018
0a5a203
Adds warning about loading inexistant class
flovilmart Sep 1, 2018
0c9ab2f
Add formatError option
myovchev Sep 1, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4,796 changes: 2,392 additions & 2,404 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
"commander": "2.17.1",
"deepcopy": "1.0.0",
"express": "4.16.2",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"intersect": "1.0.1",
"lodash": "4.17.5",
"lru-cache": "4.1.3",
Expand Down
Loading