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
Hello! I would prefer not to resolve fields the user has not requested. For example, in the GetAuthor operation below, I don't want to resolve an author's books (which come from Source A) if the user has only requested the author's name (which comes from Source B). How can I achieve this? Thanks!
type Author {
id: Int!
books: [Book!]
name: String!
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello! I would prefer not to resolve fields the user has not requested. For example, in the
GetAuthor
operation below, I don't want to resolve an author's books (which come from Source A) if the user has only requested the author's name (which comes from Source B). How can I achieve this? Thanks!Beta Was this translation helpful? Give feedback.
All reactions