GraphQL - Queries
Given the query
{ books(limit: 2) { title } } and a database with books titled 'A', 'B', 'C', what will the query return?{ books(limit: 2) { title } } and a database with books titled 'A', 'B', 'C', what will the query return?limit argumentlimit: 2 argument restricts the number of returned books to 2.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions