Skip to main content

getUserProfileInfo method

[Future[<[QueryResult[<[Object?]>]]>]] getUserProfileInfo(

  1. [[User] user]

)

Retrieves user profile information using a GraphQL query.

params:

  • user: An instance of User 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 
  1. talawa
  2. user_profile_service
  3. UserProfileService
  4. getUserProfileInfo method
UserProfileService class