"""GraphQL queries.""" GET_OR_CREATE_LABEL_PARTICIPANT = """ mutation($data: LabelParticipantInput!, $vendorId: Int, $subaccountId: Int) { createLabelParticipant( input: $data, vendorId: $vendorId, subaccountId: $subaccountId ) { name id spotifyId appleMusicId } } """ SET_LABEL_PARTICIPANTS_FOR_ISRC = """ mutation( $isrc: String! $vendorId: Int $subaccountId: Int $participations: [LabelSoundRecordingParticipationInput!]! ) { setLabelSoundRecordingParticipations( isrc: $isrc vendorId: $vendorId subaccountId: $subaccountId participations: $participations ) { participations { sequenceNumber } } } """