We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'd like pass a custom type to query, but I I get error(case *schema.Object): file resolvable.go line:159
seeking help..
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----
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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----
The text was updated successfully, but these errors were encountered: