Simon Podlipsky

Results 264 comments of Simon Podlipsky

@greg0ire @derrabus can we reopen? Where is it stuck? Is it waiting to being reviewed or is something still needed from the author?

@Urigo graphql spec defines `Node` interface https://graphql.org/learn/global-object-identification/#node-interface ```gql interface Node { id: ID! } ``` it is not possible to override `id`'s type.

I don't use `typescript-resolvers`. My use case is for consuming the API. Usecase ------ Schema: ```gql interface Node { id: ID! } type Foo implements Node { id: ID! }...

```ts import type { CodegenConfig } from '@graphql-codegen/cli'; // eslint-disable-next-line import/no-extraneous-dependencies import dotenv from 'dotenv'; dotenv.config({ path: '.env.local', }); const config: CodegenConfig = { generates: { './src/graphql/GraphQL.tsx': { config: {...

When doing full app integration tests I want to simulate the same environment as is in prod in order to test exactly the same thing that runs there.

> Is not registering the error handler integrations not an good compromise here? I'm assuming your integration tests don't test for unhandled or fatal errors caught by Sentry? Or do...

@cleptric what is the sentry's statement on this?

I think this will require too much work to get is working on unsupported php versions. I'm willing to implement this is we drop

Ok let me see what can be done.