We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Types for cart.lines not generated
query Input { deliveryCustomization { metafield(namespace: "$app:checkout-delivery-by-product-data", key: "function-configuration") { value } } cart { lines { cost { totalAmount { amount } } } deliveryGroups { deliveryOptions { title handle } } } }
IDE output:
It works fine if I change query_path and schema_path to like this: (Note missing ./ before file name)
query_path
schema_path
./
generate_types!( query_path = "input.graphql", schema_path = "schema.graphql" );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Types for cart.lines not generated
IDE output:
It works fine if I change
query_path
andschema_path
to like this: (Note missing./
before file name)The text was updated successfully, but these errors were encountered: