Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor type changes for visitor-plugin-common #2266

Merged
merged 1 commit into from
Aug 1, 2019
Merged

Minor type changes for visitor-plugin-common #2266

merged 1 commit into from
Aug 1, 2019

Conversation

midzdotdev
Copy link

Currently, when calling visit with a visitor extending the BaseTypesVisitor in the @graphql-codegen/visitor-plugin-common package, the compiler throws a wobbly because the types do not match. Example:

import { visit } from 'graphql'
const visitorResult = visit(astNode, { leave: visitor })

If it matters, the full error at { leave: visitor } is this:

Argument of type '{ leave: Visitor<PluginConfig, ParsedConfig>; }' is not assignable to parameter of type 'Visitor<ASTKindToNode, ASTNode>'.
  Type '{ leave: Visitor<PluginConfig, ParsedConfig>; }' is not assignable to type 'EnterLeave<VisitFn<ASTNode, ASTNode> | { Name?: VisitFn<ASTNode, NameNode> | undefined; Document?: VisitFn<ASTNode, DocumentNode> | undefined; OperationDefinition?: VisitFn<ASTNode, OperationDefinitionNode> | undefined; ... 39 more ...; InputObjectTypeExtension?: VisitFn<...> | undefined; }>'.
    Types of property 'leave' are incompatible.
      Type 'Visitor<PluginConfig, ParsedConfig>' is not assignable to type 'VisitFn<ASTNode, ASTNode> | { Name?: VisitFn<ASTNode, NameNode> | undefined; Document?: VisitFn<ASTNode, DocumentNode> | undefined; OperationDefinition?: VisitFn<ASTNode, OperationDefinitionNode> | undefined; ... 39 more ...; InputObjectTypeExtension?: VisitFn<...> | undefined; } | undefined'.
        Type 'Visitor<PluginConfig, ParsedConfig>' is not assignable to type '{ Name?: VisitFn<ASTNode, NameNode> | undefined; Document?: VisitFn<ASTNode, DocumentNode> | undefined; OperationDefinition?: VisitFn<ASTNode, OperationDefinitionNode> | undefined; ... 39 more ...; InputObjectTypeExtension?: VisitFn<...> | undefined; }'.
          Types of property 'UnionTypeDefinition' are incompatible.
            Type '(node: UnionTypeDefinitionNode, key: string | number, parent: any) => string' is not assignable to type 'VisitFn<ASTNode, UnionTypeDefinitionNode>'.
              Types of parameters 'key' and 'key' are incompatible.
                Type 'string | number | undefined' is not assignable to type 'string | number'.
                  Type 'undefined' is not assignable to type 'string | number'.

And now it works, voila! Apologies for the slightly hacky nature of the fix.

Currently, when calling `visit` with a visitor extending the `BaseTypesVisitor` in the `@graphql-codegen/visitor-plugin-common` package, the compiler throws a wobbly because the types do not match. Example:
```ts
import { visit } from 'graphql'
const visitorResult = visit(astNode, { leave: visitor })
```

If it matters, the full error at `{ leave: visitor }` is this:
```
Argument of type '{ leave: Visitor<PluginConfig, ParsedConfig>; }' is not assignable to parameter of type 'Visitor<ASTKindToNode, ASTNode>'.
  Type '{ leave: Visitor<PluginConfig, ParsedConfig>; }' is not assignable to type 'EnterLeave<VisitFn<ASTNode, ASTNode> | { Name?: VisitFn<ASTNode, NameNode> | undefined; Document?: VisitFn<ASTNode, DocumentNode> | undefined; OperationDefinition?: VisitFn<ASTNode, OperationDefinitionNode> | undefined; ... 39 more ...; InputObjectTypeExtension?: VisitFn<...> | undefined; }>'.
    Types of property 'leave' are incompatible.
      Type 'Visitor<PluginConfig, ParsedConfig>' is not assignable to type 'VisitFn<ASTNode, ASTNode> | { Name?: VisitFn<ASTNode, NameNode> | undefined; Document?: VisitFn<ASTNode, DocumentNode> | undefined; OperationDefinition?: VisitFn<ASTNode, OperationDefinitionNode> | undefined; ... 39 more ...; InputObjectTypeExtension?: VisitFn<...> | undefined; } | undefined'.
        Type 'Visitor<PluginConfig, ParsedConfig>' is not assignable to type '{ Name?: VisitFn<ASTNode, NameNode> | undefined; Document?: VisitFn<ASTNode, DocumentNode> | undefined; OperationDefinition?: VisitFn<ASTNode, OperationDefinitionNode> | undefined; ... 39 more ...; InputObjectTypeExtension?: VisitFn<...> | undefined; }'.
          Types of property 'UnionTypeDefinition' are incompatible.
            Type '(node: UnionTypeDefinitionNode, key: string | number, parent: any) => string' is not assignable to type 'VisitFn<ASTNode, UnionTypeDefinitionNode>'.
              Types of parameters 'key' and 'key' are incompatible.
                Type 'string | number | undefined' is not assignable to type 'string | number'.
                  Type 'undefined' is not assignable to type 'string | number'.
```

And now it works, voila! Apologies for the slightly hacky nature of the fix.
@dotansimha
Copy link
Owner

Thank you @james2mid !

@dotansimha dotansimha merged commit 61e9a84 into dotansimha:master Aug 1, 2019
@midzdotdev midzdotdev deleted the patch-1 branch August 1, 2019 11:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants