mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
27 lines
558 B
JSON
27 lines
558 B
JSON
{
|
|
"schema": {
|
|
"https://${NEXT_PUBLIC_SHOPIFY_STORE_DOMAIN}/admin/api/2022-01/graphql.json": {
|
|
"headers": {
|
|
"X-Shopify-Access-Token": "${SHOPIFY_ADMIN_ACCESS_TOKEN}"
|
|
}
|
|
}
|
|
},
|
|
"documents": [{}],
|
|
"generates": {
|
|
"./admin-schema.d.ts": {
|
|
"plugins": ["typescript", "typescript-operations"],
|
|
"config": {
|
|
"scalars": {
|
|
"ID": "string"
|
|
}
|
|
}
|
|
},
|
|
"./admin-schema.graphql": {
|
|
"plugins": ["schema-ast"]
|
|
}
|
|
},
|
|
"hooks": {
|
|
"afterAllFileWrite": ["prettier --write"]
|
|
}
|
|
}
|