I searched a lot on Internet, I think, not much or no one worked on Google Data Studio on scripting level. API's are available but I don't know how can I connect my Data Studio project with script to run any stuff using scripting.
To connect script with other Google Apps we write scripts which communicate with the following API's:
var GoogleSheet= SpreadsheetApp.getActiveSpreadsheet();
var Googleform = FormApp.openById('SOME-ID');
etc.
But to connect with Data Studio there is something different which not defines from which data studio project we are connecting:
var GoogleDataStudio = DataStudioApp().createCommunityConnector();
It Maybe be simple, but there is no straight source available to define its simplicity of connecting Data Studio with Google Script.
I want to connect my data studio specific schema with script to work on fields to automate filtering etc.
Please help me at that place. I will be huge Thankful to you.