diff --git a/react/queries/getOrganizationPermissions.gql b/react/queries/getOrganizationPermissions.gql new file mode 100644 index 0000000..cb30344 --- /dev/null +++ b/react/queries/getOrganizationPermissions.gql @@ -0,0 +1,8 @@ +query GetOrganizationStorefront($id: ID) { + getOrganizationByIdStorefront(id: $id) + @context(provider: "vtex.b2b-organizations-graphql") { + permissions { + createQuote + } + } +}