-
-
Notifications
You must be signed in to change notification settings - Fork 826
Comparing changes
Open a pull request
base repository: ardatan/graphql-tools
base: v6.0.12
head repository: ardatan/graphql-tools
compare: v6.0.13
Commits on Jul 2, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 25b7df6 - Browse repository at this point
Copy the full SHA 25b7df6View commit details -
Add (failing) test for WrapType mutation (#1722)
Co-authored-by: Tommy Long <tommy@jdlt.co.uk>
Configuration menu - View commit details
-
Copy full SHA for 3b5b677 - Browse repository at this point
Copy the full SHA 3b5b677View commit details -
allow mutation type wrapping (#1723)
the blocker for this was that the default createProxyingResolverFn was changed to no longer hardcode the operation, but to rather infer it from the root type being stitched from. This was in parallel to a similar change with the target fieldName which was helpful when making the RenameRootField transformer just a special case of the RenameObjectField transformer, but messes up the wrapping of mutations, because when the root fields in the wrapping subschema are the ones that actually do the proxying, and wrapping them with another type causes them to default to the query operation. So, the default createProxyingResolverFn now hardcodes the operation, and all is well.
Configuration menu - View commit details
-
Copy full SHA for ed567ad - Browse repository at this point
Copy the full SHA ed567adView commit details
Commits on Jul 5, 2020
-
standardize ExecutionResult (#1727)
to be from internal polyfill this can probably be changed back to import from graphql after support for versions < 15.2 is dropped See: https://github.com/graphql/graphql-js/releases/tag/v15.2.0 graphql/graphql-js#2644
Configuration menu - View commit details
-
Copy full SHA for 895f9a4 - Browse repository at this point
Copy the full SHA 895f9a4View commit details -
Introduce result visiting (#1718)
* introduce result visiting This changes introduces a few generic functions for revisiting data, demonstrating use of some of them within the RenameTypes transform. = visitData can be used to recursively visit an ExecutionResult (or any object) it takes two functions, one executed when entering the object, one when leaving = visitResult can be used to visit a result by with a resultVisitorMap and/or an errorVisitorMap visitResult visits the result using the request, so it knows the object type for every object within the map, as long as the result includes __typename info when requesting abstract types, and also knows the field name for each aliased key within the object. * it executes the correct visitor from each objectVisitorMap included within the resultVisitorMap depending on the object type and field name * it executes object visitors on the object itself when entering and leaving the object using the values from the __enter and __leave dummy field names within the objectVisitorMap * it executes any visitors for leaf types included within the resultVisitorMap to provide a simple mechanism of visiting all fields of a certain leaf type errors can also be visited -- these are meant to provide opportunities for transforming a GraphQLError, including the path, and so, if an errorVisitorMap is included, error visitors from the map will be collected for each field found in the path of the original error. * Add result transforming to bundled transformers These transformers now can utilize the visitData method to recursively visit the result and modify it as necessary by checking the __typename value. State about fields can be saved within the transformation context. Adds result wrapping capability to the following generic transformers = TransformCompositeFields = TransformInterfaceFields = TransformObjectFields = TransformRootFields = ExtendSchema = MapFields Adds result visiting usage to the following transfromers = WrapFields = WrapType = HoistField
Configuration menu - View commit details
-
Copy full SHA for 6dc5e02 - Browse repository at this point
Copy the full SHA 6dc5e02View commit details -
Configuration menu - View commit details
-
Copy full SHA for e69c95e - Browse repository at this point
Copy the full SHA e69c95eView commit details
Commits on Jul 6, 2020
-
Configuration menu - View commit details
-
Copy full SHA for c7a24c3 - Browse repository at this point
Copy the full SHA c7a24c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a56fc9 - Browse repository at this point
Copy the full SHA 0a56fc9View commit details -
Configuration menu - View commit details
-
Copy full SHA for e14de2e - Browse repository at this point
Copy the full SHA e14de2eView commit details
Commits on Jul 7, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 5cad6e8 - Browse repository at this point
Copy the full SHA 5cad6e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7dfaab2 - Browse repository at this point
Copy the full SHA 7dfaab2View commit details -
Configuration menu - View commit details
-
Copy full SHA for c5589c3 - Browse repository at this point
Copy the full SHA c5589c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 968a139 - Browse repository at this point
Copy the full SHA 968a139View commit details -
Configuration menu - View commit details
-
Copy full SHA for f3fc266 - Browse repository at this point
Copy the full SHA f3fc266View commit details -
Configuration menu - View commit details
-
Copy full SHA for f76d15b - Browse repository at this point
Copy the full SHA f76d15bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d5c22e - Browse repository at this point
Copy the full SHA 6d5c22eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c865850 - Browse repository at this point
Copy the full SHA c865850View commit details
Commits on Jul 8, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 8e263e8 - Browse repository at this point
Copy the full SHA 8e263e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e9c0bd - Browse repository at this point
Copy the full SHA 9e9c0bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for d463d77 - Browse repository at this point
Copy the full SHA d463d77View commit details -
Introduce batch delegation (#1735)
* fix memoization = memoize info using info.fieldNodes, which is memoized by upstream graphql-js = refactor StitchingInfo type and handleObject and supporting methods to use consistent keys to enable memoization * add batchDelegate package Add key option within type merging config to enable batch loading for lists. This minimal version of batching uses cached dataLoaders to create a separate batch for each list rather than for every similar query within the resolution tree. This is because a new dataloader is created for every new info.fieldNodes object, which is memoized upstream by graphql-js within resolution of a given list to allow the loader to be used for items of that list. A future version could provide an option to batch by similar target fieldName/selectionSet, but this version may hit the sweet spot in terms of code complexity and batching behavior. see: #1710 * reorganize delegate files remove unused isProxiedResult function move unwrapResult and dehoistResult into createMergedResolver WrapFields and HoistField transforms now use their own unwrapping and dehoisting logic, so these functions should be located only to the file that used them
Configuration menu - View commit details
-
Copy full SHA for d319d27 - Browse repository at this point
Copy the full SHA d319d27View commit details
Commits on Jul 9, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f47aa0b - Browse repository at this point
Copy the full SHA f47aa0bView commit details -
Configuration menu - View commit details
-
Copy full SHA for cd29f46 - Browse repository at this point
Copy the full SHA cd29f46View commit details -
Configuration menu - View commit details
-
Copy full SHA for e0037af - Browse repository at this point
Copy the full SHA e0037afView commit details -
Configuration menu - View commit details
-
Copy full SHA for f95e714 - Browse repository at this point
Copy the full SHA f95e714View commit details -
Configuration menu - View commit details
-
Copy full SHA for 782260e - Browse repository at this point
Copy the full SHA 782260eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3354695 - Browse repository at this point
Copy the full SHA 3354695View commit details
Commits on Jul 12, 2020
-
fixes selectionSet hints with WrapFields transform (#1757)
Visitors visiting the proxying ast cannot rely on the operation being valid according to the source schema in all cases. But, the proxying document's root field nodes represent values with the expected return type, and so the document can be traversed according to the source schema from that point and below. See #1725
Configuration menu - View commit details
-
Copy full SHA for 428a80b - Browse repository at this point
Copy the full SHA 428a80bView commit details
Commits on Jul 13, 2020
-
Modify ast nodes when transforming schemas (#1762)
Each transform should also modify the underlying astnode and extensionASTNodes, if they exist. This PR also changes mapSchema to automatically update a type's astNode list of field definitions to match the actual field definitions includes within the type's new config map after mapping. There is likely space for making sure to update additional astNodes within types to match the enclosed graphql type system objects, for example, enum types with the enclosed enum values. That may be included in a separate PR at this time. Addresses #1747
Configuration menu - View commit details
-
Copy full SHA for 81e668d - Browse repository at this point
Copy the full SHA 81e668dView commit details -
allow selectionSet hints for stitching to be functions (#1766)
that take the specified gateway field as a parameter and produce a required selection set, allowing passing of arguments from the gateway field to the required target schema field. See #1709
Configuration menu - View commit details
-
Copy full SHA for 63644bd - Browse repository at this point
Copy the full SHA 63644bdView commit details
Commits on Jul 14, 2020
-
refactor to rely on mapSchema (#1767)
= TransformCompositeFields and TransformInputObjectFields can use mapSchema via MapperKind.COMPOSITE_FIELD and MapperKind.INPUT_OBJECT_FIELD. = field utility functions can use rebuildAstNode and rebuildExtensionAstNodes from mapSchema
Configuration menu - View commit details
-
Copy full SHA for 3b5fef8 - Browse repository at this point
Copy the full SHA 3b5fef8View commit details -
refactor out renameTypes function (#1768)
from RenameTypes transform = to remove duplicative functionality from RenameRootTypes = also switch RenameRootTypes to use visitData just like RenameTypes
Configuration menu - View commit details
-
Copy full SHA for af46985 - Browse repository at this point
Copy the full SHA af46985View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1e44fba - Browse repository at this point
Copy the full SHA 1e44fbaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3cfacb5 - Browse repository at this point
Copy the full SHA 3cfacb5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1d9ac8b - Browse repository at this point
Copy the full SHA 1d9ac8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 788a1af - Browse repository at this point
Copy the full SHA 788a1afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a6baf7 - Browse repository at this point
Copy the full SHA 4a6baf7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 09f0fa2 - Browse repository at this point
Copy the full SHA 09f0fa2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 02956a7 - Browse repository at this point
Copy the full SHA 02956a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for df52bf8 - Browse repository at this point
Copy the full SHA df52bf8View commit details -
Configuration menu - View commit details
-
Copy full SHA for aef6041 - Browse repository at this point
Copy the full SHA aef6041View commit details -
Configuration menu - View commit details
-
Copy full SHA for 36b7b16 - Browse repository at this point
Copy the full SHA 36b7b16View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e3e60c - Browse repository at this point
Copy the full SHA 5e3e60cView commit details -
Add automatic generation of API documentation (#1760)
Co-authored-by: Arda TANRIKULU <ardatanrikulu@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 01751b0 - Browse repository at this point
Copy the full SHA 01751b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b05867 - Browse repository at this point
Copy the full SHA 1b05867View commit details -
Configuration menu - View commit details
-
Copy full SHA for d3260bf - Browse repository at this point
Copy the full SHA d3260bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 65ad166 - Browse repository at this point
Copy the full SHA 65ad166View commit details -
Configuration menu - View commit details
-
Copy full SHA for f79c983 - Browse repository at this point
Copy the full SHA f79c983View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4469a6f - Browse repository at this point
Copy the full SHA 4469a6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for f5057e6 - Browse repository at this point
Copy the full SHA f5057e6View commit details
There are no files selected for viewing
This file was deleted.