getUserProfileInfo method
[Future[<[QueryResult[<[Object?]>]]>]] getUserProfileInfo(
- [[User] user]
)
Retrieves user profile information using a GraphQL query.
params:
user
: An instance ofUser
representing the user whose profile information is to be fetched. The user's ID is used as a variable for the GraphQL query.
returns:
Future<QueryResult<Object?>>
: which contains the result of the GraphQL query.
Implementation
Future<QueryResult<Object?>> getUserProfileInfo(User user) async
- talawa
- user_profile_service
- UserProfileService
- getUserProfileInfo method