Andrei

Results 5 issues of Andrei

Hello! I can't manage to build a Library, webpack build fails with: ``` ERROR in ./Accounts/retrieve.ts(4,9) TS2339: Property 'add' does not exist on type 'Library'. ``` **retrieve.ts:** ```typescript import {library}...

I am already have password .input-group with pre-prended .input-group-addon and i want to append show password button after password field. How should i implement that to existed .input-group? ``` >...

enhancement

## Describe the Bug My custom resolver for fields doesn't work with `@strawberry.experimental.pydantic.type` I've got: ``` graphql.error.graphql_error.GraphQLError: Expected value of type 'User' but got: {'id': 1, 'first_name': 'John', 'last_name': 'Doe',...

bug

**My schema:** ```graphql scalar Upload input CompanyUpdateInput { logo: Upload # logo is optional } type Company { id: ID! } type Mutation { updateUserCompany(company: CompanyUpdateInput!): Company! } ``` **Case...