from(“timer:run?repeatCount=1”)
.to(“google-sheets://data/get?spreadsheetId=1i8jAVG3r6BINzdU0NzgAIuDUuz3FiVRyFF1Wm6WQq_0&range=’Camel Sheet1′”)
.log(“${body}”)
.convertBodyTo(String.class)
.process(new TransformerGoogleSheets())
.to(“file:file/Input?fileName=employee.csv”)
.log(“Sucess”);
.to(“google-sheets://data/get?spreadsheetId=1i8jAVG3r6BINzdU0NzgAIuDUuz3FiVRyFF1Wm6WQq_0&range=’Camel Sheet1′”)
here i want don’t want to retrive all the sheets(sheet1,sheet2,…etc) data from google sheets
I searched on apache camel website i didn't get relevant solution.
Yogesh Vicky is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.