本文整理汇总了TypeScript中apollo-utilities.resultKeyNameFromField函数的典型用法代码示例。如果您正苦于以下问题:TypeScript resultKeyNameFromField函数的具体用法?TypeScript resultKeyNameFromField怎么用?TypeScript resultKeyNameFromField使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了resultKeyNameFromField函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1:
fieldResult => {
if (typeof fieldResult !== 'undefined') {
resultsToMerge.push({
[resultKeyNameFromField(selection)]: fieldResult,
} as TData);
}
},
开发者ID:apollostack,项目名称:apollo-client,代码行数:7,代码来源:LocalState.ts
示例2: handleMissing
selectionSet.selections.forEach(selection => {
if (!shouldInclude(selection, variables)) {
// Skip this entirely
return;
}
if (isField(selection)) {
const fieldResult = handleMissing(
this.executeField(object, typename, selection, execContext),
);
if (typeof fieldResult !== 'undefined') {
objectsToMerge.push({
[resultKeyNameFromField(selection)]: fieldResult,
});
}
} else {
let fragment: InlineFragmentNode | FragmentDefinitionNode;
if (isInlineFragment(selection)) {
fragment = selection;
} else {
// This is a named fragment
fragment = fragmentMap[selection.name.value];
if (!fragment) {
throw new InvariantError(`No fragment named ${selection.name.value}`);
}
}
const typeCondition = fragment.typeCondition.name.value;
const match = execContext.fragmentMatcher(rootValue, typeCondition, contextValue);
if (match) {
let fragmentExecResult = this.executeSelectionSet({
selectionSet: fragment.selectionSet,
rootValue,
execContext,
});
if (match === 'heuristic' && fragmentExecResult.missing) {
fragmentExecResult = {
...fragmentExecResult,
missing: fragmentExecResult.missing.map(info => {
return { ...info, tolerable: true };
}),
};
}
objectsToMerge.push(handleMissing(fragmentExecResult));
}
}
});
开发者ID:apollostack,项目名称:apollo-client,代码行数:54,代码来源:readFromStore.ts
示例3: executeField
const execute = async selection => {
if (!shouldInclude(selection, variables)) {
// Skip this entirely
return;
}
if (isField(selection)) {
const fieldResult = await executeField(selection, rootValue, execContext);
const resultFieldKey = resultKeyNameFromField(selection);
if (fieldResult !== undefined) {
if (result[resultFieldKey] === undefined) {
result[resultFieldKey] = fieldResult;
} else {
merge(result[resultFieldKey], fieldResult);
}
}
return;
}
let fragment: InlineFragmentNode | FragmentDefinitionNode;
if (isInlineFragment(selection)) {
fragment = selection;
} else {
// This is a named fragment
fragment = fragmentMap[selection.name.value];
if (!fragment) {
throw new Error(`No fragment named ${selection.name.value}`);
}
}
const typeCondition = fragment.typeCondition.name.value;
if (execContext.fragmentMatcher(rootValue, typeCondition, contextValue)) {
const fragmentResult = await executeSelectionSet(
fragment.selectionSet,
rootValue,
execContext,
);
merge(result, fragmentResult);
}
};
开发者ID:NewSpring,项目名称:apollo-client,代码行数:47,代码来源:graphql-async.ts
示例4: executeField
selectionSet.selections.forEach(selection => {
if (variables && !shouldInclude(selection, variables)) {
// Skip selection sets which we're able to determine should not be run
return;
}
if (isField(selection)) {
const fieldResult = executeField(selection, rootValue, execContext);
const resultFieldKey = resultKeyNameFromField(selection);
if (fieldResult !== undefined) {
if (result[resultFieldKey] === undefined) {
result[resultFieldKey] = fieldResult;
} else {
merge(result[resultFieldKey], fieldResult);
}
}
} else {
let fragment: InlineFragmentNode | FragmentDefinitionNode;
if (isInlineFragment(selection)) {
fragment = selection;
} else {
// This is a named fragment
fragment = fragmentMap[selection.name.value];
if (!fragment) {
throw new Error(`No fragment named ${selection.name.value}`);
}
}
const typeCondition = fragment.typeCondition.name.value;
if (execContext.fragmentMatcher(rootValue, typeCondition, contextValue)) {
const fragmentResult = executeSelectionSet(
fragment.selectionSet,
rootValue,
execContext,
);
merge(result, fragmentResult);
}
}
});
开发者ID:apollostack,项目名称:apollo-client,代码行数:45,代码来源:graphql.ts
示例5: executeField
private executeField(
object: StoreObject,
typename: string | void,
field: FieldNode,
execContext: ExecContext,
): ExecResult {
const { variableValues: variables, contextValue } = execContext;
const fieldName = field.name.value;
const args = argumentsObjectFromField(field, variables);
const info: ExecInfo = {
resultKey: resultKeyNameFromField(field),
directives: getDirectiveInfoFromField(field, variables),
};
const readStoreResult = readStoreResolver(
object,
typename,
fieldName,
args,
contextValue,
info,
);
if (Array.isArray(readStoreResult.result)) {
return this.combineExecResults(
readStoreResult,
this.executeSubSelectedArray(
field,
readStoreResult.result,
execContext,
),
);
}
// Handle all scalar types here
if (!field.selectionSet) {
assertSelectionSetForIdValue(field, readStoreResult.result);
if (this.freezeResults && process.env.NODE_ENV !== 'production') {
maybeDeepFreeze(readStoreResult);
}
return readStoreResult;
}
// From here down, the field has a selection set, which means it's trying to
// query a GraphQLObjectType
if (readStoreResult.result == null) {
// Basically any field in a GraphQL response can be null, or missing
return readStoreResult;
}
// Returned value is an object, and the query has a sub-selection. Recurse.
return this.combineExecResults(
readStoreResult,
this.executeSelectionSet({
selectionSet: field.selectionSet,
rootValue: readStoreResult.result,
execContext,
}),
);
}
开发者ID:apollostack,项目名称:apollo-client,代码行数:61,代码来源:readFromStore.ts
示例6: resolveField
private async resolveField(
field: FieldNode,
rootValue: any,
execContext: ExecContext,
): Promise<any> {
const { variables } = execContext;
const fieldName = field.name.value;
const aliasedFieldName = resultKeyNameFromField(field);
const aliasUsed = fieldName !== aliasedFieldName;
const defaultResult = rootValue[aliasedFieldName] || rootValue[fieldName];
let resultPromise = Promise.resolve(defaultResult);
// Usually all local resolvers are run when passing through here, but
// if we've specifically identified that we only want to run forced
// resolvers (that is, resolvers for fields marked with
// `@client(always: true)`), then we'll skip running non-forced resolvers.
if (
!execContext.onlyRunForcedResolvers ||
this.shouldForceResolver(field)
) {
const resolverType =
rootValue.__typename || execContext.defaultOperationType;
const resolverMap = this.resolvers && this.resolvers[resolverType];
if (resolverMap) {
const resolve = resolverMap[aliasUsed ? fieldName : aliasedFieldName];
if (resolve) {
resultPromise = Promise.resolve(resolve(
rootValue,
argumentsObjectFromField(field, variables),
execContext.context,
{ field },
));
}
}
}
return resultPromise.then((result = defaultResult) => {
// If an @export directive is associated with the current field, store
// the `as` export variable name and current result for later use.
if (field.directives) {
field.directives.forEach(directive => {
if (directive.name.value === 'export' && directive.arguments) {
directive.arguments.forEach(arg => {
if (arg.name.value === 'as' && arg.value.kind === 'StringValue') {
execContext.exportedVariables[arg.value.value] = result;
}
});
}
});
}
// Handle all scalar types here.
if (!field.selectionSet) {
return result;
}
// From here down, the field has a selection set, which means it's trying
// to query a GraphQLObjectType.
if (result == null) {
// Basically any field in a GraphQL response can be null, or missing
return result;
}
if (Array.isArray(result)) {
return this.resolveSubSelectedArray(field, result, execContext);
}
// Returned value is an object, and the query has a sub-selection. Recurse.
if (field.selectionSet) {
return this.resolveSelectionSet(
field.selectionSet,
result,
execContext,
);
}
});
}
开发者ID:apollostack,项目名称:apollo-client,代码行数:77,代码来源:LocalState.ts
注:本文中的apollo-utilities.resultKeyNameFromField函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论