"""GraphQL Queries""" rename_artist = """ mutation ($artistId: ID!, $artistName: String!){ renameArtist(id: $artistId, name: $artistName) } """ merge_artist = """ mutation ($artistId: ID!, $artistName: String!, $requestType: String, $currentArtistId: Int){ renameArtist(id: $artistId, name: $artistName, requestType: $requestType, currentArtistId: $currentArtistId) } """