本文整理汇总了TypeScript中graphql.visit函数的典型用法代码示例。如果您正苦于以下问题:TypeScript visit函数的具体用法?TypeScript visit怎么用?TypeScript visit使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了visit函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: printSchema
.then(response => {
const schema = JSON.parse(response.body).data
const sdl = printSchema(buildClientSchema(schema))
const parsedSdl = parse(sdl)
const mutatedSdl = visit(parsedSdl, {
ObjectTypeDefinition: {
enter(node: ObjectTypeDefinitionNode) {
if (
!['Query', 'Mutation', 'Subscription'].includes(node.name.value)
) {
const nodeWithValidFields = visit(node, {
FieldDefinition: {
enter: (fieldNode: FieldDefinitionNode) => {
if (
(fieldNode.arguments &&
fieldNode.arguments.length > 0 &&
fieldNode.type.kind === 'NamedType') ||
(fieldNode.type.kind === 'NonNullType' &&
!isScalarType(fieldNode.type))
) {
return {
...fieldNode,
arguments: fieldNode.arguments
? fieldNode.arguments.filter(
arg => arg.name.value !== 'where',
)
: [],
}
} else {
return fieldNode
}
},
},
})
return nodeWithValidFields
}
},
},
EnumTypeDefinition: {
enter(enumNode: EnumTypeDefinitionNode) {
if (enumNode.name.value === 'PrismaDatabase') {
return null
}
},
},
FieldDefinition: {
enter(fieldNode: FieldDefinitionNode) {
if (fieldNode.name.value === 'executeRaw') {
return null
}
},
},
})
console.log(print(mutatedSdl))
})
开发者ID:nunsie,项目名称:prisma,代码行数:55,代码来源:fetchSchemaFromEndpoint.ts
示例2: printWithReducedWhitespace
export function printWithReducedWhitespace(ast: DocumentNode): string {
// In a GraphQL AST (which notably does not contain comments), the only place
// where meaningful whitespace (or double quotes) can exist is in
// StringNodes. So to print with reduced whitespace, we:
// - temporarily sanitize strings by replacing their contents with hex
// - use the default GraphQL printer
// - minimize the whitespace with a simple regexp replacement
// - convert strings back to their actual value
// We normalize all strings to non-block strings for simplicity.
const sanitizedAST = visit(ast, {
StringValue(node: StringValueNode): StringValueNode {
return {
...node,
value: Buffer.from(node.value, 'utf8').toString('hex'),
block: false,
};
},
});
const withWhitespace = print(sanitizedAST);
const minimizedButStillHex = withWhitespace
.replace(/\s+/g, ' ')
.replace(/([^_a-zA-Z0-9]) /g, (_, c) => c)
.replace(/ ([^_a-zA-Z0-9])/g, (_, c) => c);
return minimizedButStillHex.replace(/"([a-f0-9]+)"/g, (_, hex) =>
JSON.stringify(Buffer.from(hex, 'hex').toString('utf8')),
);
}
开发者ID:simonjoom,项目名称:react-native-project,代码行数:28,代码来源:signature.ts
示例3: removeAliases
export function removeAliases(ast: DocumentNode): DocumentNode {
return visit(ast, {
Field(node: FieldNode): FieldNode {
return {
...node,
alias: undefined,
};
},
});
}
开发者ID:simonjoom,项目名称:react-native-project,代码行数:10,代码来源:signature.ts
示例4: transformRequest
public transformRequest(originalRequest: Request): Request {
let fromSelection: SelectionSetNode;
const ourPathFrom = JSON.stringify(this.from);
const ourPathTo = JSON.stringify(this.to);
let fieldPath: Array<string> = [];
visit(originalRequest.document, {
[Kind.FIELD]: {
enter: (node: FieldNode) => {
fieldPath.push(node.name.value);
if (ourPathFrom === JSON.stringify(fieldPath)) {
fromSelection = node.selectionSet;
return BREAK;
}
},
leave: (node: FieldNode) => {
fieldPath.pop();
},
},
});
fieldPath = [];
const newDocument = visit(originalRequest.document, {
[Kind.FIELD]: {
enter: (node: FieldNode) => {
fieldPath.push(node.name.value);
if (ourPathTo === JSON.stringify(fieldPath) && fromSelection) {
return {
...node,
selectionSet: fromSelection,
};
}
},
leave: (node: FieldNode) => {
fieldPath.pop();
},
},
});
return {
...originalRequest,
document: newDocument,
};
}
开发者ID:apollostack,项目名称:graphql-tools,代码行数:42,代码来源:ExtractField.ts
示例5: extractFragmentName
function extractFragmentName(node: ASTNode) {
visit(node, {
enter(node) {
if (node.kind !== "FragmentSpread") {
return;
} else if (relatedFragments.some(fragmentName => fragmentName === node.name.value)) {
return;
}
relatedFragments = [...relatedFragments, node.name.value];
}
});
}
开发者ID:vvakame,项目名称:til,代码行数:12,代码来源:documentModifier.ts
示例6: sortAST
export function sortAST(ast: DocumentNode): DocumentNode {
return visit(ast, {
OperationDefinition(
node: OperationDefinitionNode,
): OperationDefinitionNode {
return {
...node,
variableDefinitions: sorted(
node.variableDefinitions,
'variable.name.value',
),
};
},
SelectionSet(node: SelectionSetNode): SelectionSetNode {
return {
...node,
// Define an ordering for field names in a SelectionSet. Field first,
// then FragmentSpread, then InlineFragment. By a lovely coincidence,
// the order we want them to appear in is alphabetical by node.kind.
// Use sortBy instead of sorted because 'selections' is not optional.
selections: sortBy(node.selections, 'kind', 'name.value'),
};
},
Field(node: FieldNode): FieldNode {
return {
...node,
arguments: sorted(node.arguments, 'name.value'),
};
},
FragmentSpread(node: FragmentSpreadNode): FragmentSpreadNode {
return { ...node, directives: sorted(node.directives, 'name.value') };
},
InlineFragment(node: InlineFragmentNode): InlineFragmentNode {
return { ...node, directives: sorted(node.directives, 'name.value') };
},
FragmentDefinition(node: FragmentDefinitionNode): FragmentDefinitionNode {
return {
...node,
directives: sorted(node.directives, 'name.value'),
variableDefinitions: sorted(
node.variableDefinitions,
'variable.name.value',
),
};
},
Directive(node: DirectiveNode): DirectiveNode {
return { ...node, arguments: sorted(node.arguments, 'name.value') };
},
});
}
开发者ID:simonjoom,项目名称:react-native-project,代码行数:50,代码来源:signature.ts
示例7: replaceFieldsWithFragments
function replaceFieldsWithFragments(
targetSchema: GraphQLSchema,
document: DocumentNode,
mapping: FieldToFragmentMapping,
): DocumentNode {
const typeInfo = new TypeInfo(targetSchema);
return visit(
document,
visitWithTypeInfo(typeInfo, {
[Kind.SELECTION_SET](
node: SelectionSetNode,
): SelectionSetNode | null | undefined {
const parentType: GraphQLType = typeInfo.getParentType();
if (parentType) {
const parentTypeName = parentType.name;
let selections = node.selections;
if (mapping[parentTypeName]) {
node.selections.forEach(selection => {
if (selection.kind === Kind.FIELD) {
const name = selection.name.value;
const fragments = mapping[parentTypeName][name];
if (fragments && fragments.length > 0) {
const fragment = concatInlineFragments(
parentTypeName,
fragments,
);
selections = selections.concat(fragment);
}
}
});
}
if (selections !== node.selections) {
return {
...node,
selections,
};
}
}
},
}),
);
}
开发者ID:apollostack,项目名称:graphql-tools,代码行数:44,代码来源:ReplaceFieldWithFragment.ts
示例8: hideLiterals
export function hideLiterals(ast: DocumentNode): DocumentNode {
return visit(ast, {
IntValue(node: IntValueNode): IntValueNode {
return { ...node, value: '0' };
},
FloatValue(node: FloatValueNode): FloatValueNode {
return { ...node, value: '0' };
},
StringValue(node: StringValueNode): StringValueNode {
return { ...node, value: '', block: false };
},
ListValue(node: ListValueNode): ListValueNode {
return { ...node, values: [] };
},
ObjectValue(node: ObjectValueNode): ObjectValueNode {
return { ...node, fields: [] };
},
});
}
开发者ID:simonjoom,项目名称:react-native-project,代码行数:19,代码来源:signature.ts
示例9: addTypenameToAbstract
function addTypenameToAbstract(
targetSchema: GraphQLSchema,
document: DocumentNode,
): DocumentNode {
const typeInfo = new TypeInfo(targetSchema);
return visit(
document,
visitWithTypeInfo(typeInfo, {
[Kind.SELECTION_SET](
node: SelectionSetNode,
): SelectionSetNode | null | undefined {
const parentType: GraphQLType = typeInfo.getParentType();
let selections = node.selections;
if (
parentType &&
(parentType instanceof GraphQLInterfaceType ||
parentType instanceof GraphQLUnionType) &&
!selections.find(
_ =>
(_ as FieldNode).kind === Kind.FIELD &&
(_ as FieldNode).name.value === '__typename',
)
) {
selections = selections.concat({
kind: Kind.FIELD,
name: {
kind: Kind.NAME,
value: '__typename',
},
});
}
if (selections !== node.selections) {
return {
...node,
selections,
};
}
},
}),
);
}
开发者ID:apollostack,项目名称:graphql-tools,代码行数:42,代码来源:AddTypenameToAbstract.ts
示例10: transformRequest
public transformRequest(originalRequest: Request): Request {
const newDocument = visit(originalRequest.document, {
[Kind.NAMED_TYPE]: (node: NamedTypeNode) => {
const name = node.name.value;
if (name in this.reverseMap) {
return {
...node,
name: {
kind: Kind.NAME,
value: this.reverseMap[name],
},
};
}
},
});
return {
document: newDocument,
variables: originalRequest.variables,
};
}
开发者ID:apollostack,项目名称:graphql-tools,代码行数:20,代码来源:RenameTypes.ts
注:本文中的graphql.visit函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论