You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type User {
firstName: String!
lastName: String!
}
type Users {
users: [User]
}
extend type Query {
me: Users
}
when I execute the query if I print the query string in the queryFetcher it only asks for the type name in the query string. and I'm only getting the type name back
query{me{__typename}}"
what am I missing here?
The text was updated successfully, but these errors were encountered:
Description
hello! I'm following your docs on using the resolve function for our nextJS app. I'm running the query
my GQL schema looks like
when I execute the query if I print the query string in the
queryFetcher
it only asks for the type name in the query string. and I'm only getting the type name backwhat am I missing here?
The text was updated successfully, but these errors were encountered: