"""update_project query.""" query = ''' mutation($artistName: String!, $vendorId: Int!) { saveArtists( input: { create: [{ artistName: $artistName, vendorId: $vendorId }] } ) { artistId artistName artistType vendorId } } '''