- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
两者之间有什么显着差异吗?我对从运行时和启动性能到功能和工作流程差异的任何事情都感兴趣。文档在解释差异以及何时应该使用一个而不是另一个方面做得很差。
两个版本中的示例:
构建架构
const { graphql, buildSchema } = require('graphql');
const schema = buildSchema(`
type Query {
hello: String
}
`);
const root = { hello: () => 'Hello world!' };
graphql(schema, '{ hello }', root).then((response) => {
console.log(response);
});
const { graphql, GraphQLSchema, GraphQLObjectType, GraphQLString } = require('graphql');
const schema = new GraphQLSchema({
query: new GraphQLObjectType({
name: 'Query',
fields: () => ({
hello: {
type: GraphQLString,
resolve: () => 'Hello world!'
}
})
})
});
graphql(schema, '{ hello }').then((response) => {
console.log(response);
});
最佳答案
buildSchema
函数采用 SDL(模式定义语言)中的模式并返回 GraphQLSchema
目的。给定使用每种方法生成的两个相同模式,运行时性能将相同。使用 buildSchema
的服务器的启动时间会更慢,因为解析 SDL 增加了一个原本不存在的额外步骤——是否会有明显的差异,我不能肯定地说。
使用 buildSchema
通常是不可取的,因为它严重限制了架构的功能。
使用 buildSchema
生成的模式:
resolveType
或 isTypeOf
类型的属性,使其无法使用 Unions
和 Interfaces
buildSchema
不允许您为架构中的任何字段指定解析器函数。这包括您
Query
上的字段和
Mutation
类型。使用
buildSchema
的示例通过依赖 GraphQL 的默认解析器行为并传入
root
来解决这个问题。值(value)。
resolve
函数指定,GraphQL 将检查父值(由父字段的解析器返回)并且(假设它是一个对象)将尝试在该父值上找到与字段名称匹配的属性。如果找到匹配项,则将该字段解析为该值。如果匹配恰好是一个函数,它首先调用该函数,然后解析为该函数返回的值。
hello
第一个模式中的字段没有解析器。 GraphQL 查看父值,对于根级别字段,它是传入的根值。根值有一个名为
hello
的字段。 ,并且它是一个函数,因此它调用该函数,然后解析为该函数返回的值。您只需制作
hello
即可达到相同的效果。属性也是一个字符串而不是一个函数。
const schema = new GraphQLSchema({
query: new GraphQLObjectType({
name: 'Query',
fields: () => ({
hello: {
type: GraphQLString,
}
})
})
});
const root = { hello: () => 'Hello world!' };
graphql(schema, '{ hello }', root).then((response) => {
console.log(response);
});
Query
、
Mutation
或
Subscription
类型上的字段)。如果您想为不同类型的字段提供解析器,则无法使用
buildSchema
来实现。 .
buildSchema
.
graphql-tools
'
makeExecutableSchema
或者使用更完整的解决方案,如
apollo-server
, 使用
makeExecutableSchema
在引擎盖下。
makeExecutableSchema
允许您使用 SDL 定义模式,同时还提供单独的
resolvers
目的。所以你可以这样做:
const typeDefs = `
type Query {
hello: String
}
`
const resolvers = {
Query: {
hello: () => 'Hello!',
},
}
const schema = makeExecutableSchema({ typeDefs, resolvers })
buildSchema
,你也可以提供其他类型的解析器,甚至可以提供
resolveType
接口(interface)或联合的属性。
const resolvers = {
Query: {
animals: () => getAnimalsFromDB(),
}
Animal: {
__resolveType: (obj) => obj.constructor.name
},
Cat: {
owner: (cat) => getOwnerFromDB(cat.ownerId),
}
}
makeExecutableSchema
,您还可以实现自定义标量和模式指令,轻松自定义各种模式验证规则,甚至允许实现类型从其接口(interface)继承解析器。虽然了解 GraphQL.js 的基础知识以及如何使用
GraphQLSchema
生成基本模式至关重要。构造函数,
makeExecutableSchema
是一个更完整、更灵活的解决方案,应该是大多数项目的首选。
See the docs更多细节。
buildSchema
,实际上可以通过使用 ES6 类来解决无法为非根类型提供解析器的问题。退房
this sample schema .这并没有解决
buildSchema
的所有其他限制,但它确实使它更可口。
关于graphql - buildSchema 和 GraphQLSchema 之间的显着差异?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53984094/
我正在使用 npm link更改我的私有(private)包并查看另一个项目中的操作更改。问题是我的两个项目都使用 graphql作为一个依赖,所以我得到一个错误 Cannot use GraphQL
给定以下代码: import { graphql } from 'graphql' import graphqlTools from 'graphql-tools' const { makeExecu
我正在使用 type-graphql 构建无服务器后端和 apollo-server-lambda ,但是在对 graphql 端点发出大约第三次请求后,我收到错误 Error: Cannot use
我是 GraphQL 的新手。如果这很明显,请原谅我。 除了使用 buildSchema , 有没有一种方法可以使用 new GraphQLSchema 定义多个查询/变异? 这就是我现在所拥有的。
两者之间有什么显着差异吗?我对从运行时和启动性能到功能和工作流程差异的任何事情都感兴趣。文档在解释差异以及何时应该使用一个而不是另一个方面做得很差。 两个版本中的示例: 构建架构 const { gr
我正在研究 GraphQL 模式验证工具。我想在内存中更新我的 GraphQLSchema目的。 例如替换我尝试做的类型: const replaceType = (schema: GraphQLSc
我在这里遵循这个例子:- http://www.baeldung.com/spring-graphql 对我来说,GraphQLSchema bean 没有自动注册。它抛出这个错误:-没有可用的“gr
我正在使用 graphql-js 创建一个新的 graphQL 模式但不会通过 http 提供服务,将用作本地 graphql 服务。我需要以 json 格式获取此 graphql 的架构,以将其与另
我是一名优秀的程序员,十分优秀!