Skip to main content

gqlNonAuthMutation method

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

  1. [[String] mutation, )

This function is used to run the graph-ql mutation to authenticate the non signed-in user.

params:

  • mutation: mutation is used to change/add/delete data in graphql, for more info read graphql docs
  • variables: variables to be passed with mutation
  • reCall: when not first fetch call

returns:

  • Future<QueryResult<Object?>>: it returns Future of dynamic

Implementation

Future<QueryResult<Object?>> gqlNonAuthMutation(
String mutation, ) async
  1. talawa
  2. database_mutation_functions
  3. DataBaseMutationFunctions
  4. gqlNonAuthMutation method
DataBaseMutationFunctions class