For load JSON data from the backend to Google big query I should use the following code:
.dataset(datasetId)
.table(tableId).load(file_path))
Load function doesn’t receive JSON obj but only file path so, I need to save the JSON obj and get a URL.
How to do it? Is there an option to save the JSON obj to the collection and get link?