mirror of
https://github.com/wassname/talk.git
synced 2026-07-10 00:18:56 +08:00
document optimizations v2
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import graphql from '@coralproject/graphql-anywhere-optimized';
|
||||
import {createTypeGetter} from 'graphql-ast-tools';
|
||||
import introspectionData from './introspection.json';
|
||||
|
||||
// User typeGetter to get more optimized documents.
|
||||
const typeGetter = createTypeGetter(introspectionData);
|
||||
|
||||
// Use global fragment cache for transformed fragments.
|
||||
const fragmentMap = {};
|
||||
|
||||
export default (...args) => {
|
||||
while (args.length < 7) {
|
||||
args.push(undefined);
|
||||
}
|
||||
|
||||
const transformOptions = {
|
||||
typeGetter,
|
||||
fragmentMap,
|
||||
};
|
||||
|
||||
args[6] = transformOptions;
|
||||
return graphql(...args);
|
||||
};
|
||||
@@ -124,10 +124,6 @@ export async function createContext({
|
||||
const plugins = createPluginsService(pluginsConfig);
|
||||
const graphql = createGraphQLService(
|
||||
createGraphQLRegistry(plugins.getSlotFragments.bind(plugins)),
|
||||
{
|
||||
introspectionData,
|
||||
optimize: process.env.NODE_ENV === 'production',
|
||||
},
|
||||
);
|
||||
if (!notification) {
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import {transformDocument, createTypeGetter} from 'graphql-ast-tools';
|
||||
import {addTypenameToDocument} from 'apollo-client/queries/queryTransform';
|
||||
|
||||
/**
|
||||
@@ -6,18 +5,7 @@ import {addTypenameToDocument} from 'apollo-client/queries/queryTransform';
|
||||
* @param {string} basename base path of the url
|
||||
* @return {Object} histor service
|
||||
*/
|
||||
export function createGraphQLService(registry, {
|
||||
introspectionData,
|
||||
optimize = false,
|
||||
}) {
|
||||
const transformOptions = {
|
||||
typeGetter: optimize && introspectionData ? createTypeGetter(introspectionData) : null,
|
||||
|
||||
// Use shared fragment map.
|
||||
// Attention: Fragment names must be unique otherwise weird things will happen.
|
||||
fragmentMap: {},
|
||||
};
|
||||
|
||||
export function createGraphQLService(registry) {
|
||||
return {
|
||||
registry,
|
||||
resolveDocument(documentOrCallback, props, context) {
|
||||
@@ -26,10 +14,6 @@ export function createGraphQLService(registry, {
|
||||
: documentOrCallback;
|
||||
document = registry.resolveFragments(document);
|
||||
|
||||
if (optimize) {
|
||||
document = transformDocument(document, transformOptions);
|
||||
}
|
||||
|
||||
// We also add typenames to the document which apollo would usually do,
|
||||
// but we also use the network interface in subscriptions directly
|
||||
// which require the resolved typenames.
|
||||
|
||||
Reference in New Issue
Block a user