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

pass custom type to query error[query filter using custom sturct]! #152

Open
maxnullz opened this issue Jan 17, 2018 · 0 comments
Open

pass custom type to query error[query filter using custom sturct]! #152

maxnullz opened this issue Jan 17, 2018 · 0 comments

Comments

@maxnullz
Copy link

I'd like pass a custom type to query, but I I get error(case *schema.Object):
file resolvable.go
line:159

seeking help..

e.g:

type JobFilter{
idLt: String
idGt: String
}
allJobs(filter: JobFilter, offset: Int, limit: Int): [Job!]
--------above is graphql string in golang----------


type JobFilter struct {
IdLt string
IdGt string
}

type Filters struct{
Offset *int32
Limit *int32
Filter *JobFilter
}

func (RootResolver) AllJobs(ctx context.Context, args Filters ) ([]JobResolver, error) {
return AllJobs(ctx, args)
}
-----------above is golang struct----

@maxnullz maxnullz changed the title pass custom type to query error! pass custom type to query error[query filter using custom sturct]! Jan 17, 2018
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

No branches or pull requests

1 participant