GraphQL - Queries
What will be the output of the query
{ users(age_gt: 30) { name age } } if the database has users: Alice(25), Bob(35), Carol(40)?{ users(age_gt: 30) { name age } } if the database has users: Alice(25), Bob(35), Carol(40)?age_gt: 30 means users with age greater than 30.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions