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
Is your feature request related to a problem? Please describe.
Currently, the API only supports fetching a single user at a time. To improve efficiency and reduce multiple API calls, we need to modify the resolver to allow fetching multiple users simultaneously.
Proposed Solution
Update the GraphQL schema to accept an array of user IDs.
Modify the resolver to fetch multiple users in one query.
Optimize the database query to handle bulk requests.
Ensure the response format returns an array of user objects.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, the API only supports fetching a single user at a time. To improve efficiency and reduce multiple API calls, we need to modify the resolver to allow fetching multiple users simultaneously.
Proposed Solution
Update the GraphQL schema to accept an array of user IDs.
Modify the resolver to fetch multiple users in one query.
Optimize the database query to handle bulk requests.
Ensure the response format returns an array of user objects.
The text was updated successfully, but these errors were encountered: