Execute introspection query against the Firebase SQL Connect's generated GraphQL schema.
GraphQL introspection query provides metadata such as what tables the schema have, what queries and mutations can be performed on the schema, and so on. Read more at https://graphql.org/learn/introspection. services.introspectGraphql can read schema metadata but cannot read rows from Cloud SQL instance, which can be done via services.executeGraphqlRead.
HTTP request
POST https://firebasedataconnect.googleapis.com/v1/{name=projects/*/locations/*/services/*}:introspectGraphql
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
name |
Required. The relative resource name of Firebase SQL Connect service, in the format: |
Request body
The request body contains data with the following structure:
| JSON representation |
|---|
{
"query": string,
"operationName": string,
"variables": {
object
},
"extensions": {
object ( |
| Fields | |
|---|---|
query |
Required. The GraphQL query document source. |
operationName |
Optional. The name of the GraphQL operation name. Required only if |
variables |
Optional. Values for GraphQL variables provided in this request. |
extensions |
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 OAuth 2.0 Overview.
IAM Permissions
Requires the following IAM permission on the name resource:
firebasedataconnect.services.introspectGraphql
For more information, see the IAM documentation.