Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MLHale authored Sep 16, 2024
1 parent b747c1f commit 73215bf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/webservices-security/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,11 +372,10 @@ class Mutation(graphene.ObjectType):
refresh_token = graphql_jwt.Refresh.Field()

schema = graphene.Schema(query=Query, mutation=Mutation)
```

In GraphQL, a mutation is a type of operation that allows clients to create, update, or delete data on the server. Mutations enable clients to send data to the server and define precisely how the data should change. Each mutation can also specify what data should be returned after the operation, which can be particularly useful for updating the client-side state immediately after the mutation.

```

#### 4.4.4. Test with Postman
Obtain a JWT token by making a mutation request:

Expand Down

0 comments on commit 73215bf

Please sign in to comment.