fixes
This commit is contained in:
parent
27215cb4aa
commit
94e065991b
@ -162,8 +162,10 @@ export async function findShop(shopifyDomain: string) {
|
|||||||
|
|
||||||
After this let's set up the GraphQL schema for Genql, simply run the following command:
|
After this let's set up the GraphQL schema for Genql, simply run the following command:
|
||||||
|
|
||||||
```bash
|
```sh
|
||||||
npx genql --endpoint "https://<name>.myshopify.com/admin/api/2024-07/graphql.json" -S --output "app/lib/genql/generated.server" -H "X-Shopify-Access-Token: <access token>" --esm
|
npx genql -S --output "app/lib/genql/generated.server" \
|
||||||
|
--endpoint "https://<name>.myshopify.com/admin/api/2024-07/graphql.json" \
|
||||||
|
-H "X-Shopify-Access-Token: <access token>" --esm
|
||||||
```
|
```
|
||||||
|
|
||||||
Replace the `<name>.myshopify.com` and `<access token>` with some real data (you can also use the data from a test store, the command is just needed to generate the graphql schema).
|
Replace the `<name>.myshopify.com` and `<access token>` with some real data (you can also use the data from a test store, the command is just needed to generate the graphql schema).
|
||||||
|
@ -309,8 +309,8 @@ Formally it is defined as $A \times B = \\{ (a,b) ∣ a \in A, b \in B \\}$.
|
|||||||
$$
|
$$
|
||||||
\begin{aligned}
|
\begin{aligned}
|
||||||
A &= \\{ 1, 2 \\} \\\\
|
A &= \\{ 1, 2 \\} \\\\
|
||||||
B &= \\{ 3, 4, 5 \\} \\\\
|
B &= \\{ 3, 4 \\} \\\\
|
||||||
A \times B &= \\{ (1,3), (1,4), (1,5), (2,3), (2,4), (2,5) \\}
|
A \times B &= \\{ (1,3), (1,4), (2,3), (2,4) \\}
|
||||||
\end{aligned}
|
\end{aligned}
|
||||||
$$
|
$$
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user