Currently both the GraphQL mutations and queries are present in a single file src/graphql/queries.rs.
It's generally considered good practice to keep queries and mutations separate when handling with graphQL requests, all that needs to be done is to move the mutations present in the file to a new file src/graphql/mutations.rs and update any downstream imports of the defined functions.