- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了这个错误,但我不知道如何调试它。当我通过运行 yarn nx serve app
在开发模式下运行它时,它工作正常。当我构建和部署 prod docker 版本时,出现此错误:
(node:7) UnhandledPromiseRejectionWarning: Error: Schema must contain uniquely named
types but contains multiple types named "n".
2022-01-07T02:40:36.831174844Z at new GraphQLSchema (/app/node_modules/graphql/type/schema.js:194:15)
2022-01-07T02:40:36.831182778Z at GraphQLSchemaFactory.create (/app/node_modules/@nestjs/graphql/dist/schema-builder/graphql-schema.factory.js:39:24)
2022-01-07T02:40:36.831188556Z at GraphQLSchemaBuilder.buildSchema (/app/node_modules/@nestjs/graphql/dist/graphql-schema.builder.js:62:52)
2022-01-07T02:40:36.831193705Z at GraphQLSchemaBuilder.build (/app/node_modules/@nestjs/graphql/dist/graphql-schema.builder.js:24:31)
2022-01-07T02:40:36.831199146Z at GraphQLFactory.mergeOptions (/app/node_modules/@nestjs/graphql/dist/graphql.factory.js:33:69)
2022-01-07T02:40:36.831204965Z at GraphQLModule.onModuleInit (/app/node_modules/@nestjs/graphql/dist/graphql.module.js:92:57)
2022-01-07T02:40:36.831210371Z at processTicksAndRejections (internal/process/task_queues.js:95:5)
2022-01-07T02:40:36.831215501Z at async Object.callModuleInitHook (/app/node_modules/@nestjs/core/hooks/on-module-init.hook.js:51:9)
2022-01-07T02:40:36.831220535Z at async NestApplication.callInitHook (/app/node_modules/@nestjs/core/nest-application-context.js:179:13)
2022-01-07T02:40:36.831225861Z at async NestApplication.init (/app/node_modules/@nestjs/core/nest-application.js:96:9)
2022-01-07T02:40:36.831231456Z (Use `node --trace-warnings ...` to show where the warning was created)
(node:7) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 2)
2022-01-07T02:40:36.831243405Z (node:7) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
我查看了所有其他代码库,但没有看到重复数据。而且它不会在开发模式下失败,也只会在生产模式下失败。一段时间以来,我一直在试图弄清楚这一点。非常感谢任何帮助。
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type AdditionalOptionModel {
activated: String
id: Float
notice_period_days: Float
product_identifier: String
scheduled_deactivation_date: String
}
type AdditionalOptionsServerResponseModel {
additional_options: [AdditionalOptionModel!]
}
input Address {
city: String
country: String
line1: String
line2: String
state: String
zip: String
}
type BackupModel {
built: Boolean
built_at: String
created: String
disk: DiskModel
id: Float
locked: Boolean
size: String
}
type BackupScheduleModel {
created: String
disk: DiskModel
duration: String
id: Float
period: String
rotation_period: Boolean
start_time: String
status: String
}
input ContactInput {
email: String!
message: String!
name: String!
phone: String!
}
type CreateServerResponseModel {
server: ServerDetailModel
servers: [ServerDetailModel!]
}
input CreateVpsServerInput {
addition_options: [String!]
hostname: String
hostnames: [String!]
location: String!
product: String!
recipe: Float
template: String
}
type DiskModel {
built: Boolean
id: Float
is_primary: Boolean
label: String
size: Float
}
type ExampleProductDataModel {
bandwidth: Float
cpu: Float
disk: Float
memory: Float
}
input GuideInput {
email: String!
name: String!
}
type IPAddressModel {
address: String
created: String
gateway: String
id: Float
is_ipv6: Boolean
type: String
}
type LinksModel {
pages: PagesModel
}
type LocationModel {
id: Float
identifier: String
is_under_maintenance: Boolean
name: String
on_hold: Boolean
}
type MetaModel {
pages: Float
total: Float
}
type Mutation {
addAdditionalOptions(apiKey: String!, options: [String!]!, serverId: Int!): Boolean!
addUser(user: User!): UserModel!
cancelSubscription(email: String!): Boolean!
changeHostname(apiKey: String!, hostname: String!, serverId: Int!): Boolean!
changeLabel(apiKey: String!, label: String!, serverId: Int!): Boolean!
changePassword(apiKey: String!, password: String!, serverId: Int!): Boolean!
createMailingSubscription(subscriber: SubscriberInput!): Boolean!
createServer(apiKey: String!, server: CreateVpsServerInput!): CreateServerResponseModel!
delete(apiKey: String!, serverId: Int!): Boolean!
deleteVpsConfig(id: Int!): Boolean!
disableAdditionalOptions(apiKey: String!, options: [String!]!, serverId: Int!): Boolean!
paymentIntent(paymentMethod: PaymentMethod!): String!
performCommand(apiKey: String!, command: String!, serverId: Int!): Boolean!
resize(apiKey: String!, product: String!, serverId: Int!): Boolean!
saveVpsConfig(config: VpsConfig!): VpsConfigModel!
send(contact: ContactInput!): Boolean!
sendGuide(guide: GuideInput!): Boolean!
subscribe(payment: Payment!): Boolean!
updateApiKey(email: String!): String!
updateProfile(user: User!): UserModel!
}
type PagesModel {
first: String
last: String
next: String
prev: String
}
input Payment {
address: Address
email: String!
name: String!
paymentIntent: String!
phone: String!
type: String!
}
input PaymentMethod {
amount: Float!
email: String!
name: String!
phone: String!
}
type ProductDetailsModel {
category: String
details: ExampleProductDataModel
id: String
identifier: String
is_sub_category: Boolean
name: String
parent_category: String
price: Float
state: String
type: ProductTypeModel
}
type ProductModel {
id: Float
identifier: String
name: String
price: Float
type: ProductTypeModel
}
type ProductTypeModel {
id: Float
identifier: String
name: String
}
type Query {
additionalOptions(apiKey: String!, serverId: Int!): AdditionalOptionsServerResponseModel!
getApiKey(email: String!): String!
getRecipes(apiKey: String!, page: Int): RecipesResponseModel!
getTemplateDetails(apiKey: String!, templateId: Int!): TemplateDetailsResponseModel!
getTemplates(apiKey: String!, group: String!): TemplatesResponseModel!
server(apiKey: String!, serverId: Int!): ServerDetailModel!
servers(apiKeys: [String!]!): [ServerDetailModel!]!
settings: SiteSettingsModel!
user(email: String!): UserModel!
validate(registration: Registration!): Boolean!
vpsConfigs(email: String!): [VpsConfigModel!]!
}
type RecipeModel {
created: String
id: Float
modified: String
name: String
os_type: String
recipe_type: RecipeTypeModel
script: String
script_type: String
}
type RecipeTypeModel {
id: Float
name: String
}
type RecipesResponseModel {
links: LinksModel
meta: MetaModel
recipes: [RecipeModel!]
}
input Registration {
email: String
key: Float
}
type ServerDetailModel {
bandwidth_total: Float
bandwidth_used: Float
cpu: Float
created: String
detailed_state: String
disabled: String
disk: Float
hostname: String
id: String
initial_root_password: String
ip_addresses: [IPAddressModel!]
label: String
location: LocationModel
locked: String
main_ip_address: String
memory: Float
name: String
product: ProductModel
scheduled_delete_date: String
state: String
template: TemplateModel
}
type SiteSettingsModel {
skipGuideForm: Boolean!
}
input SubscriberInput {
email: String!
name: String!
}
type TemplateDetailsModel {
group: String
locations: [LocationModel!]
name: String
price: Float
product_prices: [TemplateProductPriceModel!]
products: [ProductModel!]
system_name: String
}
type TemplateDetailsResponseModel {
template: TemplateDetailsModel
}
type TemplateModel {
group: String
id: String
name: String
price: String
product_prices: [TemplateProductPriceModel!]
system_name: String
}
type TemplateProductPriceModel {
price: Float
product: String
}
type TemplateTabModel {
id: Float
label: String
sort: String
}
type TemplatesResponseModel {
links: LinksModel
meta: MetaModel
templates: [TemplateModel!]
}
input User {
apiKey: String
email: String
firstName: String
id: String
lastName: String
originalEmail: String
password: String
phone: String
username: String
}
type UserModel {
apiKey: String
email: String
firstName: String
id: String
lastName: String
originalEmail: String
password: String
phone: String
username: String
}
input VpsConfig {
apiKey: String!
email: String
id: Float
name: String!
}
type VpsConfigModel {
apiKey: String!
email: String
id: Float
name: String!
}
最佳答案
Webpack 可能会缩小您在构建应用程序的生产版本时用于生成 GraphQL 模式的类名。
尝试将以下内容添加到您的 Webpack 配置中:
optimization: {
minimize: false,
}
https://webpack.js.org/configuration/optimization/#optimizationminimize
关于typescript - 错误 : Schema must contain uniquely named types but contains multiple types named "n",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70616137/
我已经写了并且 npm 发布了这个:https://github.com/justin-calleja/pkg-dependents 现在我正在用 Typescript 编写这个包:https://g
我有一个函数,我想在 TypeScript 中模拟它以进行测试。在我的测试中,我只关心 json和 status .但是,当使用 Jest 的 jest.spyOn 时我的模拟函数的类型设置为返回 h
我正在使用一个库 (Axios),它的包中包含 Typescript 声明。 我想声明一个将 AxiosResponse(在库的 .d.ts 文件中声明)作为参数的函数。我有以下内容: functio
我是 Typescript 的新手。我想使用 将一个 Typescript 文件加载到另一个 Typescript 文件中标签。 我做了一些事情,但它不起作用!请帮助我。 first.ts: imp
为什么我会收到下面屏幕截图中显示的错误? Atom 说我的 tsconfig.json“项目文件包含无效选项”用于 allowJs、buildOnSave 和 compileOnSave。 但是应该允
所以我正在创建一个 TypeScript 库,我可以轻松地将所有生成的 JS 文件编译成一个文件。有没有办法将所有 .ts 和 .d.ts 编译成一个 .ts 文件? 除了支持 JS 的版本(较少的智
Microsoft Research 提供了一种名为Safer TypeScript 的新 TypeScript 编译器变体: http://research.microsoft.com/en-us/
我需要这个来在单个文件中分发 TypeScript 中的库。有没有办法将多个 typescript 文件合并到(一个js文件+一个 typescript 定义)文件中? 最佳答案 要创建一个库,您可以
用例:我想知道一个函数在 typescript 中执行需要多少时间。我想为此目的使用装饰器。我希望装饰器应该返回时间以便(我可以进一步使用它),而不仅仅是打印它。 例如: export functio
我想检查一个类型是否可以为 null,以及它是否具有值的条件类型。 我尝试实现 type IsNullable = T extends null ? true : false; 但是好像不行 type
我的问题是基于这个 question and answer 假设我们有下一个代码: const myFn = (p: { a: (n: number) => T, b: (o: T) => v
我知道双重否定前缀,我知道 TypeScript 的单后缀(非空断言)。 但是这个双后缀感叹号是什么? /.*验证码为(\d{6}).*/.exec(email.body!!)!![1] 取自here
我正在使用以下文件结构在 Webstorm 中开发一个项目 | src | ... | many files | types | SomeInterface |
在 TypeScript 类中,可以为属性声明类型,例如: class className { property: string; }; 如何在对象字面量中声明属性的类型? 我试过下面的代码,但它
我正在寻找一种在不丢失推断类型信息的情况下将 TypeScript 中的文字值限制为特定类型的好方法。 让我们考虑一个类型Named,它保证有一个名字。 type Named = { name:
在 TypeScript 中,我想创建一个联合类型来表示属于一个或多个不同类型的值,类似于 oneOf在 OpenAPI或 JSON Schema .根据a previous answer on a
type Func = (foo:string) => void // function expression const myFunctionExpression:Func = function(f
假设我有一个联合类型,我正在使用类似 reducer 的 API 调用模式,看起来像这样: type Action = { request: { action: "create
我在 typescript 中有以下去抖功能: export function debounce( callback: (...args: any[]) => void, wait: numb
在 Vue3 的 defineComponent 函数中,第一个泛型参数是 Props,所以我在这里使用 Typescript 接口(interface)提供我的 props 类型。喜欢: expor
我是一名优秀的程序员,十分优秀!