URL format

The format of the GraphQL URL is a combination of a couple of different segments. The local URL is shorter than the server URL since only one service is available at a time when running locally.

Server
  • Format: https://{BaseUrl}/{Tenant}/BaaSApi/{SuiteContext}/{ServiceName}/graphql
  • Example: https://{BaseUrl}/{Tenant}/BaaSApi/baasservices/helloworldjava/graphql
Local
  • Format: http://{BaseUrl}/graphql
  • Example: http://localhost:7071/graphql
Segments
  • SuiteContext: The "context" which is specified under "restHandler -> suite" in the manifest
  • ServiceName: The name of the service which is specified in "name" in the manifest. The name is automatically converted to lower case. This matches one endpoint in API Gateway.