DamianCzajkowski

Results 29 comments of DamianCzajkowski

Hello, will work on merging these changes start anytime soon?

Sorry for the late response, but you just need to specify python version in serverless.yml, and just try to run serverless-offline with your lambda. Like this: `serverless.yml` provider: runtime: python3.11...

This can be delayed after next API is released.

Currently, we are working on [PR #32](https://github.com/mirumee/ariadne-graphql-modules/pull/32), which covers both schema-first and code-first approaches. Regarding Pydantic, we need to consider and plan whether and how we want to implement it.

Hi @rafalp, Could you please take a look at this PR? I’d love to hear your thoughts on it. I’ve made some changes to the code structure to improve the...

I know 301 changed files looks intimidating, but most of these are snapshot files (snapshots/*.yml). These are automatically generated by pytest-regression to store test outputs for regression testing. Since they’re...

> My only worry is that v1 module change will be a nasty surprise to everyone who just updates GraphQL Modules to new version and expects it to work. I...

@nevoodoo I'm working on a solution and will have it ready soon.

@dkbarn For now it looks like this: ```python async with SaleorClient(saleor_url=saleor_url, api_key=None) as saleor_client: query_str = [ Query.products(first=1, channel="default-channel").fields( ProductCountableConnectionFields.edges().fields( ProductCountableEdgeFields.node().fields( ProductFields.id, ProductFields.slug, ), ProductCountableEdgeFields.cursor, ), ), Query.products(first=10, channel="default-channel") .alias("my_products")...

Hi, I've published experimental version of custom query builder in ariadne-codegen. It is a pre-release from dev branch. https://github.com/mirumee/ariadne-codegen/releases/tag/0.14.0.dev1 This code needs some refactor and code optimization. I will be...