How to authenticate a request from Flow Action in the application (Remix)

What I want to do.
We would like to add a Flow action extension to our app and use graghql when it is called.

Prerequisites
Template of the app: Remix

Unknown
When a request is made from the admin screen, the following code is used to authenticate the request.
I think you will be able to use graphql with admin obtained at this time.

const { admin } = await shopify.authenticated.admin(request);
```

Is there a method to authenticate a request from a Flow action like the above?
I would like to know if anyone is familiar with this.

[https://shopify.dev/docs/apps/flow/actions/endpoints#verifying-requests](https://shopify.dev/docs/apps/flow/actions/endpoints#verifying-requests)

This post solved the problem.

Running graphql on Shopify Flow action
https://community.shopify.com/topic/2355106

If anyone else is having this issue, I found this link in the shopify remix docs which solved all my problems with authenticating flow request: https://shopify.dev/docs/api/shopify-app-remix/v2/authenticate/flow
This wasn’t linked on the flow action extension docs anywhere so it was a bit withheld.