Would someone walk me through the syntax on how to use the runQuery method to preform a gqlQuery using the Google Cloud Datastore REST API v1. I only need help in understanding the query structure of the REST API and do not need help with Google OAUTH or setting up Cloud Datatore. I have included a link to the documentation, example gqlQuery to run and Cloud Datastore structure below.
Method: projects.runQuery https://cloud.google.com/datastore/docs/reference/rest/v1/projects/runQuery
Example gqlQuery = ("Select * From Customer")
Sample Google DataStore Structure
id = "78090499534213120"
Address = "888 Fake St"
City = "Fake City"
FirstName = "Name"
LastName = "Name"
State = "CT"