This week's book giveaway is in the Agile and Other Processes forum.
We're giving away four copies of Darcy DeClute's Scrum Master Certification Guide: The Definitive Resource for Passing the CSM and PSM Exams and have Darcy DeClute on-line!
See this thread for details.
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

GraphQL - Famous N+1 query issue

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I'm facing GraphQL (N+1) query problem and it is been clearly explained in the video https://www.youtube.com/watch?v=ld2_AS4l19g&ab_channel=knowthen on how we can solve the problem.

However not sure on the following, Please help me with source code if possible, Thank you so much in advance.

Books returns 4 and query executed 4 times
User returns 8 and query executed 8 times
Department returns 4 and query executed 4 times

only one difference at the end of the schema it is defined as BooksPaged! similarly for others as well

In my Case
a. Books
b. Users
c. Department

query {
 books{
 total  
  users {
    total
    department{
        name
     }
 }
  }
}

Thanks
 
Cob is sand, clay and sometimes straw. This tiny ad is made of cob:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic