Method: projects.locations.services.executeGraphqlRead

Execute any GraphQL query against the Firebase Data Connect's generated GraphQL schema. Grants full read to the connected data sources.

services.executeGraphqlRead is identical to services.executeGraphql except it only accepts read-only query.

HTTP request

POST https://firebasedataconnect.googleapis.com/v1beta/{name=projects/*/locations/*/services/*}:executeGraphqlRead

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
name

string

Required. The relative resource name of Firebase Data Connect service, in the format:

projects/{project}/locations/{location}/services/{service}

Request body

The request body contains data with the following structure:

JSON representation
{
  "query": string,
  "operationName": string,
  "variables": {
    object
  },
  "extensions": {
    object (GraphqlRequestExtensions)
  }
}
Fields
query

string

Required. The GraphQL query document source.

operationName

string

Optional. The name of the GraphQL operation name. Required only if query contains multiple operations. See https://graphql.org/learn/queries/#operation-name.

variables

object (Struct format)

Optional. Values for GraphQL variables provided in this request.

extensions

object (GraphqlRequestExtensions)

Optional. Additional GraphQL request information.

Response body

If successful, the response body contains an instance of GraphqlResponse.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the name resource:

  • firebasedataconnect.services.executeGraphqlRead

For more information, see the IAM documentation.