oonxt
oonxt
## add context support in dataloader inspired by hasura: https://hasura.io/docs/latest/queries/postgres/query-filters/ ## Code example (if possible) ```graphql { users { orders(where: {xxx} limit: 10) { id paid_at } } } ```
## Motivation support upsert where clause. ## Proposed Solutions the code: ```rust Query::insert() .into_table(Glyph::Table) .columns([Glyph::Aspect, Glyph::Image]) .values_panic(vec![ 2.into(), 3.into(), ]) .on_conflict( OnConflict::column(Glyph::Id) .update_values([ (Glyph::Aspect, "04108048005887010020060000204E0180400400".into()), (Glyph::Image, 3.1415.into()), ]) .and_where(Expr::col(Char::Aspect).is_null()) //
error: json converter: 'ForestJacksonConverter' error: Java 8 date/time type `java.time.OffsetDateTime` not supported by default: add Module "com.fasterxml.jackson.datatype:jackson-datatype-jsr310" to enable handling
### Existing issue? - [X] I checked the [existing issues](https://github.com/flutter/gallery/issues) ### What happened? ## Expected vs actual result: expected: actual result: ## Steps to reproduce: 1. upgrade flutter ```shell flutter...
The import/export button can only be clicked once.
MultiRootEditor will trigger an additional onChange event when using @radix-ui/react-dropdown-menu
with @radix-ui/dropdown-menu: All editable elements are disappeared without: here is the code ```ts import MultiRootEditorRichDemo from "./editor"; import * as DropdownMenu from "@radix-ui/react-dropdown-menu"; import {HamburgerMenuIcon} from "@radix-ui/react-icons"; function App() {...
Is is possible to use the dynamic schema and static schema at same time?
I noticed this: https://github.com/bokuweb/docx-rs/blob/6fdf81d1baa71091988099ca899f5df85e9b4cf3/docx-core/src/documents/elements/drawing.rs#L147 And impl for Textbox is commented. Is there a plan to support this feature?
如题, ``` @Get(url = "\${0}", decoder = ForestJacksonConverter::class, dataType = "json") @BodyType(type = "json", encoder = ForestJacksonConverter::class) @Success(condition = CommonCondition::class) @HttpClient fun get(url: String, @JSONBody body: B, @Header headers: Map):...