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

fix: change ConnectionConfig.NodeType #43

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: change ConnectionConfig.NodeType
ConnectionDefinitions does not support Interfaces

Changing ConnectionConfig.NodeType from graphql.Object to graphql.Output enables this
aizatto committed May 10, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 40cb53c1ed827c2119a21e2e44c94c6aff4e39ad
8 changes: 4 additions & 4 deletions connection.go
Original file line number Diff line number Diff line change
@@ -29,10 +29,10 @@ func NewConnectionArgs(configMap graphql.FieldConfigArgument) graphql.FieldConfi
}

type ConnectionConfig struct {
Name string `json:"name"`
NodeType *graphql.Object `json:"nodeType"`
EdgeFields graphql.Fields `json:"edgeFields"`
ConnectionFields graphql.Fields `json:"connectionFields"`
Name string `json:"name"`
NodeType graphql.Output `json:"nodeType"`
EdgeFields graphql.Fields `json:"edgeFields"`
ConnectionFields graphql.Fields `json:"connectionFields"`
}

type EdgeType struct {