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
Generator skips repeating models however those aren't cross references. With "--includeCrossReferences" parameter there is no issue.
Schema:
type OrderDTO { payment: PaymentDTO! tipPayment: PaymentDTO! } type PaymentDTO { id: Float! user: User! } type User { id: Int! fcmTokens: [FCMToken!] invoiceAddress: UserInvoiceAddressInput } type FCMToken { token: String! lastSeen: String! } type UserInvoiceAddressInput { customerName: String! country: String! city: String! streetAddress: String! postalCode: String! taxNumber: String email: String } type Query { getOrder(orderId: Int!): OrderDTO! }
Generation result:
query getOrder($orderId: Int!){ getOrder(orderId: $orderId){ payment{ id user{ id fcmTokens{ token lastSeen } invoiceAddress{ customerName country city streetAddress postalCode taxNumber email } } } tipPayment{ id user{ id } } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Generator skips repeating models however those aren't cross references. With "--includeCrossReferences" parameter there is no issue.
Schema:
Generation result:
The text was updated successfully, but these errors were encountered: