From 83ea07aa1bf47ecf25f8e8c3d1cbcce86f97ce49 Mon Sep 17 00:00:00 2001 From: Trayan Azarov Date: Wed, 10 Apr 2024 01:53:09 +0300 Subject: [PATCH] fix: jq expression in create store shell example (#711) --- docs/content/getting-started/create-store.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/getting-started/create-store.mdx b/docs/content/getting-started/create-store.mdx index 4f20611c5..22038cdcd 100644 --- a/docs/content/getting-started/create-store.mdx +++ b/docs/content/getting-started/create-store.mdx @@ -148,7 +148,7 @@ public class Example { fga store create --name "FGA Demo Store" # To create the store and directly put the Store ID into an env variable: -# export FGA_STORE_ID=$(fga store create --name "FGA Demo Store" | jq -r .id) +# export FGA_STORE_ID=$(fga store create --name "FGA Demo Store" | jq -r .store.id) ```