You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I noticed the following strange formatting (pay attention to the unitAmountCurrency field how it sits behind the comment):
inputProductPriceInput {
""" The unit amount in centavo to be charged, represented as a whole integer. Centavo equals ¹⁄₁₀₀ of the basic monetary unit. """unitAmount: Int!"Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html)."unitAmountCurrency: SupportedCurrency!
}
There is a similar output object where this is not happening:
typeProductPrice {
""" The unit amount in centavo to be charged, represented as a whole integer. Centavo equals ¹⁄₁₀₀ of the basic monetary unit. """unitAmount: Int!"Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html)."unitAmountCurrency: SupportedCurrency!
}
I just encountered another case where this is happening (enums with Rust doc comments):
enumProductMultilingualInputVisibility {
"Visible in backoffice only (accessible to authorized users)." PRIVATE"Visible in eshop only (therefore it's public)." ESHOP"Visible in POS only (accessible to authorized users)." POS"Visible everywhere (in public eshop, POS and of course backoffice)." EVERYWHERE
}
Hello! I noticed the following strange formatting (pay attention to the
unitAmountCurrency
field how it sits behind the comment):See: https://github.com/adeira/universe/blob/d1e60f44855dd5221c86c818188ba31163ec2342/src/ya-comiste-meta/schema.graphql#L100-L106
There is a similar output object where this is not happening:
See: https://github.com/adeira/universe/blob/d1e60f44855dd5221c86c818188ba31163ec2342/src/ya-comiste-meta/schema.graphql#L157-L165
The input is defined here: https://github.com/adeira/universe/blob/d1e60f44855dd5221c86c818188ba31163ec2342/src/ya-comiste-rust/server/src/commerce/model/products.rs#L147-L155
Thanks for having a look! 😎
The text was updated successfully, but these errors were encountered: