-
** Which Category is your question related to? **
Amplify GraphQL API
Is it possible to add validation to fields in the schema file? So min/max length, min/max value etc? If I had a field on a Per…
-
For a simple schema.prisma :
```
model User {
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt @map("updated_at")
id String @id @default(uuid()) @db.Uuid
emai…
-
I converted legacy code that used dictionaries to use dataclasses. However, the conversion is not 100%, so the same type is sometimes represented as a dataclass, and sometimes as a dictionary.
In t…
ikriv updated
2 months ago
-
API Url: https://api.apis.guru/v2/specs/asana.com/1.0/openapi.json
Docs url: https://zudoku.dev/demo?api-url=https%3A%2F%2Fapi.apis.guru%2Fv2%2Fspecs%2Fasana.com%2F1.0%2Fopenapi.json#custom-fields-ge…
-
I'm loving the performance of validx, but there is one thing that stops me from using it. For a project we need to be able to specify metadata (form doesn't matter, could be tags as well) for the sche…
-
I'm having a heck of a time trying to transition between types. It seems like the "created", "modified", "entity" (default is _ct, _et, etc) are required for certain operations, and even if they are p…
-
执行python3 webui.py --port 9886 --model_dir speech_tts/CosyVoice-300M后,在webui上点击任何按钮都会报超时错误,如下图
控制台报错信息如下。该怎么解决啊
ERROR: Exception in ASGI application
Traceback (most recent call last):
File …
-
### Search before asking
- [X] I searched in the [issues](https://github.com/apache/paimon/issues) and found nothing similar.
### Motivation
Optimize the logic of org.apache.paimon.flink.sink.cdc.…
-
Hi,
considering the example
```js
export const CatZ = extendApi(
z.object({
name: z.string(),
age: z.number(),
breed: z.string(),
}),
{
title: 'Cat',
description…
-
Let's say we have this schema across two subgraphs
Subgraph Products
```graphql
type Product @key(fields: "id") {
id: ID!
inStock: Boolean # really slow field
}
type Query {
products…