Maksim Zaborovskiy

Results 44 comments of Maksim Zaborovskiy

In [fastify ](https://github.com/mcansh/remix-fastify) example `import * as serverBuild from '@remix-run/dev/server-build';` used and then `remix watch` + nodemon can run together

@ardatan https://github.com/Urigo/graphql-scalars/blob/master/src/scalars/UUID.ts#L9 ``` const UUID_REGEX = /^(\{){0,1}[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}(\}){0,1}$/gi; // (\{) - this part and same at the end should be removed, it's not a valid uuid ```

same problem with @apollo/client: 3.0.0-beta.50

If i set skip to true - it works, but if i use dynamic variable skip: !state.startDate it's not

If user pass null as argument explicitly, it can be `null`, so it works as it should be. See #8129

It seems works as expect if you set: ``` config: avoidOptionals: defaultValue: true ``` Not sure why it's not behaving the same by default.

I wanted to heavenly use dataloaders, but creating multiple pools with active db connections maybe problematic :(

I use [cynic for testing](https://cynic-rs.dev/quickstart): ``` let variables = testing::UserQueryVariables { user_id: user.user_id, }; let operation = testing::UserQuery::build(variables); let res = server .post("/api/graphql") .json(&operation) .await .json::(); ```

latest node support `process.loadEnvFile(envVarsPath);` out of the box

@awinograd did you found a way to convert `TypedDocumentNode` for raw request? Update: seems like `import { print } from 'graphql';` can be used to convert `TypedDocumentNode` to string for...