From 5059e2becedc428b438c868f78a3211c10898a8b Mon Sep 17 00:00:00 2001 From: Thisaru Guruge Date: Mon, 12 Aug 2024 16:45:04 +0530 Subject: [PATCH] Fix incorrect file path in GraphQL JWT BBE --- .../graphql_client_security_jwt_authentication.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/graphql-client-security-jwt-authentication/graphql_client_security_jwt_authentication.md b/examples/graphql-client-security-jwt-authentication/graphql_client_security_jwt_authentication.md index b4c21cc38e..f69d9e6ab0 100644 --- a/examples/graphql-client-security-jwt-authentication/graphql_client_security_jwt_authentication.md +++ b/examples/graphql-client-security-jwt-authentication/graphql_client_security_jwt_authentication.md @@ -2,14 +2,14 @@ The `graphql:Client` can connect to a service that is secured with self-signed JWT by adding the `Authorization: Bearer ` header by passing the `graphql:JwtIssuerConfig` to the `auth` configuration of the client. A self-signed JWT is issued before the request is sent. -::: code graphql_client_security_self_signed_jwt_authentication.bal ::: +::: code graphql_client_security_jwt_authentication.bal ::: ## Prerequisites - Run the GraphQL service given in the [JWT Auth service](/learn/by-example/graphql-service-jwt-auth/) example. Run the client program by executing the command below. -::: out graphql_client_security_self_signed_jwt_authentication.out ::: +::: out graphql_client_security_jwt_authentication.out ::: ## Related links - [`graphql:JwtIssuerConfig` record - API documentation](https://lib.ballerina.io/ballerina/graphql/latest#JwtIssuerConfig)